API Reference

This endpoint will fetch you search volume, avg. CPC, competition and a detailed breakdown of that keyword's search volume by months. Hence giving a complete picture of each keyword.

Pricing

📘

$0.0003 per request

Endpoint - POST

https://api.dataforsaas.com/v1/search_volume/single

Request Body

{
    "key" : "YOUR_API_KEY",
		"keyword" : "cheap washer",
    "ccode" : "US"
}

Get your api key from the dashboard or create an account to get your api key.


Response JSON

{
  "keyword": "best washer",
  "ccode": "us",
  "SEARCH_VOLUME": 720,
  "AVERAGE_CPC": 0.4,
  "COMPETITION": 0.24,
  "TARGETED_MONTHLY_SEARCHES": [
    {
      "month": "February",
      "year": 2023,
      "value": 590,
      "count": 590,
      "date": "2023-February"
    },
    {
      "month": "March",
      "year": 2023,
      "value": 590,
      "count": 590,
      "date": "2023-March"
    },
    {
      "month": "April",
      "year": 2023,
      "value": 590,
      "count": 590,
      "date": "2023-April"
    },
    {
      "month": "May",
      "year": 2023,
      "value": 590,
      "count": 590,
      "date": "2023-May"
    },
    {
      "month": "June",
      "year": 2023,
      "value": 720,
      "count": 720,
      "date": "2023-June"
    },
    {
      "month": "July",
      "year": 2023,
      "value": 720,
      "count": 720,
      "date": "2023-July"
    },
    {
      "month": "August",
      "year": 2023,
      "value": 720,
      "count": 720,
      "date": "2023-August"
    },
    {
      "month": "September",
      "year": 2023,
      "value": 720,
      "count": 720,
      "date": "2023-September"
    },
    {
      "month": "October",
      "year": 2023,
      "value": 720,
      "count": 720,
      "date": "2023-October"
    },
    {
      "month": "November",
      "year": 2023,
      "value": 720,
      "count": 720,
      "date": "2023-November"
    },
    {
      "month": "December",
      "year": 2023,
      "value": 880,
      "count": 880,
      "date": "2023-December"
    },
    {
      "month": "January",
      "year": 2024,
      "value": 1000,
      "count": 1000,
      "date": "2024-January"
    }
  ]
}