API Reference

This endpoint fetches you keyword's search volume data in Bulk. You will receive 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 in an array of objects.

Pricing

📘

$0.0003 per keyword in request

Endpoint - POST

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

Request Body

{
    "key" : "YOUR_API_KEY",
    "keywords" : ["best washer", "best dryer"]
    "ccode" : "US"
}

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


Response JSON

[
  {
    "ccode": "us",
    "keyword": "best washer",
    "AVERAGE_CPC": 0.4,
    "COMPETITION": 0.24,
    "SEARCH_VOLUME": 720,
    "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"
      }
    ]
  },
  {
    "ccode": "us",
    "keyword": "best dryer",
    "AVERAGE_CPC": 0.47,
    "COMPETITION": 1,
    "SEARCH_VOLUME": 5400,
    "TARGETED_MONTHLY_SEARCHES": [
      {
        "month": "February",
        "year": 2023,
        "value": 5400,
        "count": 5400,
        "date": "2023-February"
      },
      {
        "month": "March",
        "year": 2023,
        "value": 5400,
        "count": 5400,
        "date": "2023-March"
      },
      {
        "month": "April",
        "year": 2023,
        "value": 5400,
        "count": 5400,
        "date": "2023-April"
      },
      {
        "month": "May",
        "year": 2023,
        "value": 5400,
        "count": 5400,
        "date": "2023-May"
      },
      {
        "month": "June",
        "year": 2023,
        "value": 4400,
        "count": 4400,
        "date": "2023-June"
      },
      {
        "month": "July",
        "year": 2023,
        "value": 4400,
        "count": 4400,
        "date": "2023-July"
      },
      {
        "month": "August",
        "year": 2023,
        "value": 4400,
        "count": 4400,
        "date": "2023-August"
      },
      {
        "month": "September",
        "year": 2023,
        "value": 4400,
        "count": 4400,
        "date": "2023-September"
      },
      {
        "month": "October",
        "year": 2023,
        "value": 4400,
        "count": 4400,
        "date": "2023-October"
      },
      {
        "month": "November",
        "year": 2023,
        "value": 5400,
        "count": 5400,
        "date": "2023-November"
      },
      {
        "month": "December",
        "year": 2023,
        "value": 5400,
        "count": 5400,
        "date": "2023-December"
      },
      {
        "month": "January",
        "year": 2024,
        "value": 6600,
        "count": 6600,
        "date": "2024-January"
      }
    ]
  }
]