Pull daily Google keyword search volume into your own dashboards, reports, and tools—same data as the public site, via a simple REST API.
Export CSV/JSON time series for keywords you track—ideal for market and trend analysis.
Authenticate with your API key and call documented endpoints from any stack.
Automate keyword adds and refreshes alongside your existing workflows.
Get API access — start free trial See trending keywords
Example (requires your key from My Account): https://www.dailysearchvolume.com/get_keyword?apikey=YOUR_KEY&keyword=apple&locale=en-us
All API requests require authentication using your API key. You can include your API key in one of two ways:
?apikey=YOUR_API_KEY
X-API-KEY: YOUR_API_KEY
Note: You can find your API key in your account dashboard.
GET /add_keyword
| Parameter | Type | Required | Description |
|---|---|---|---|
apikey |
string | Yes | Your API key for authentication |
keyword |
string | Yes | The keyword to add (e.g., "dropshipping") |
locale |
string | Yes | The locale for the keyword (e.g., "en-us") |
group |
string | No | Optional group to categorize the keyword |
https://www.dailysearchvolume.com/add_keyword?apikey=YOUR_API_KEY&keyword=dropshipping&locale=en-us&group=ecommerce
{
"status": "keyword added successfully"
}
GET /get_keyword
| Parameter | Type | Required | Description |
|---|---|---|---|
apikey |
string | Yes | Your API key for authentication |
keyword |
string | Yes | The keyword to retrieve data for (e.g., "dropshipping") |
locale |
string | Yes | The locale for the keyword (e.g., "en-us") |
https://www.dailysearchvolume.com/get_keyword?apikey=YOUR_API_KEY&keyword=dropshipping&locale=en-us
{
"existing": [
["2022-11-01", 4322],
["2022-11-02", 4456],
["2022-11-03", 4123]
],
"predicted": [
["2025-08-02", 75737],
["2025-08-03", 76123],
["2025-08-04", 75890]
]
}
GET /list_keywords
| Parameter | Type | Required | Description |
|---|---|---|---|
apikey |
string | Yes | Your API key for authentication |
type |
string | No | Response format: "json" (default) or "csv" |
https://www.dailysearchvolume.com/list_keywords?apikey=YOUR_API_KEY&type=json
[
{
"keyword": "dropshipping",
"locale": "en-us",
"group": "ecommerce"
},
{
"keyword": "ai tools",
"locale": "en-us",
"group": "technology"
}
]
keyword,locale,group
dropshipping,en-us,ecommerce
ai tools,en-us,technology
API rate limits are based on your subscription plan: