GET
/
api
/
v1
/
keywords_search_volume
curl --request GET \
  --url https://www.fetchserp.com/api/v1/keywords_search_volume \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "search_volume": [
      {
        "keyword": "<string>",
        "avg_monthly_searches": 123,
        "competition": "<string>",
        "competition_index": 123,
        "low_top_of_page_bid_micros": 123,
        "high_top_of_page_bid_micros": 123,
        "monthly_search_volumes": [
          {
            "year": 123,
            "month": "<string>",
            "monthly_searches": 123
          }
        ]
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

A bearer token that will be supplied within an Authorization header as bearer <token>.

Query Parameters

keywords
string[]
required

The keywords to search

country
string

The country code to search for

Response

200
application/json

success

The response is of type object.