Daily Search Volume API

Integrate DailySearchVolume.com data into your applications with our simple REST API.

Authentication

All API requests require authentication using your API key. You can include your API key in one of two ways:

1. Query Parameter
?apikey=YOUR_API_KEY
2. HTTP Header
X-API-KEY: YOUR_API_KEY

Note: You can find your API key in your account dashboard.

Add Keyword

Endpoint

GET /add_keyword

Parameters

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

Example Request

https://www.dailysearchvolume.com/add_keyword?apikey=YOUR_API_KEY&keyword=dropshipping&locale=en-us&group=ecommerce

Response

{
  "status": "keyword added successfully"
}

Get Keyword Data

Endpoint

GET /get_keyword

Parameters

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")

Example Request

https://www.dailysearchvolume.com/get_keyword?apikey=YOUR_API_KEY&keyword=dropshipping&locale=en-us

Response

{
  "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]
  ]
}

List Keywords

Endpoint

GET /list_keywords

Parameters

Parameter Type Required Description
apikey string Yes Your API key for authentication
type string No Response format: "json" (default) or "csv"

Example Request

https://www.dailysearchvolume.com/list_keywords?apikey=YOUR_API_KEY&type=json

Response (JSON)

[
  {
    "keyword": "dropshipping",
    "locale": "en-us",
    "group": "ecommerce"
  },
  {
    "keyword": "ai tools",
    "locale": "en-us", 
    "group": "technology"
  }
]

Response (CSV)

keyword,locale,group
dropshipping,en-us,ecommerce
ai tools,en-us,technology

Rate Limits

API rate limits are based on your subscription plan:

  • Starter: 100 keywords / unlimited requests per day
  • Growth: 500 keywords / unlimited requests per day
  • Pro: 1,000 keywords / unlimited requests per day
  • Elite: 2,000+ keywords / unlimited requests per day

Try It