SEO Search volume API
Get AnyAPI SEO keyword search volume, CPC, competition, bid estimates, and monthly history as normalized JSON.
Call it
Make your first request
import os, requests res = requests.post( "https://api.getanyapi.com/v1/run/seo.search_volume", headers={"Authorization": f"Bearer {os.environ['ANYAPI_KEY']}"}, json={ "keywords": "" }, ) print(res.json())
{
"data": {
"keywords": [
{
"bidHigh": 1024,
"bidLow": 1024,
"competition": "example",
"competitionIndex": 1,
"cpc": 12.5,
"keyword": "a1b2c3d4",
"monthlySearches": [
{
"month": 42,
"searchVolume": 12500,
"year": 2024
}
],
"searchVolume": 12500
}
]
},
"found": true
}interface SeoSearchVolumeResponse {
data: {
keywords: {
bidHigh?: number;
bidLow?: number;
competition?: string;
competitionIndex?: number;
cpc?: number;
keyword: string;
monthlySearches?: {
month?: number;
searchVolume?: number;
year?: number;
}[];
searchVolume?: number;
}[];
} | null;
found: boolean;
}Full parameter and response reference - every field, type, and example for this endpoint.
Reference
Request, response, and price
Last verified 2026-09-16 · uptime and latency measured over 30dcurl -X POST https://api.getanyapi.com/v1/run/seo.search_volume \
-H "Authorization: Bearer $ANYAPI_KEY" \
-H "Content-Type: application/json" \
-d '{"keywords":["seo tools"],"language":"en","location":2840}'| Field | Type | Example value |
|---|---|---|
| Request body | ||
| keywords | array | ["seo tools"]SEO keyword phrases to retrieve search-volume metrics for. |
| dateFrom | string | Start of the historical monthly-searches window, formatted YYYY-MM-DD. Cannot be more than four years before today. Omit for the default trailing window. |
| dateTo | string | End of the historical monthly-searches window, formatted YYYY-MM-DD. Omit for the default trailing window. |
| language | string | "en"Language code for SEO search-volume metrics. |
| location | integer | 2840Location code for SEO search-volume metrics. The default is the United States. |
| searchPartners | boolean | When true, include Google search-partner network volume in the reported numbers; when false (the default), count Google search only. |
| Response | ||
| data | object | |
| data.keywords | object[] | SEO keyword search-volume records. Populated whenever the provider has data for the entity. |
| data.keywords[].bidHigh | number | Upper bound of the estimated paid-search top-of-page bid in USD. |
| data.keywords[].bidLow | number | Lower bound of the estimated paid-search top-of-page bid in USD. |
| data.keywords[].competition | string | Paid-search competition level for the keyword. Populated whenever the provider has data for the entity. |
| data.keywords[].competitionIndex | integer | Paid-search competition index for the keyword. |
| data.keywords[].cpc | number | Average paid-search cost per click in USD. Populated whenever the provider has data for the entity. |
| data.keywords[].keyword | string | Keyword phrase. Populated whenever the provider has data for the entity. |
| data.keywords[].monthlySearches | object[] | Monthly search-volume history for the keyword. |
| data.keywords[].monthlySearches[].month | integer | Calendar month number for the monthly search-volume record. |
| data.keywords[].monthlySearches[].searchVolume | integer | Search volume for the month. |
| data.keywords[].monthlySearches[].year | integer | Calendar year for the monthly search-volume record. |
| data.keywords[].searchVolume | integer | Average monthly search volume for the keyword. Populated whenever the provider has data for the entity. |
| found | boolean | |
| Price | ||
| Price per request | USD | $0.108 |
| Price /1k req | USD | $108.00 |
FAQ
About the SEO Search volume API
The AnyAPI SEO Search volume API returns SEO search volume data as normalized JSON from one POST call to /v1/run/seo.search_volume. Get AnyAPI SEO keyword search volume, CPC, competition, bid estimates, and monthly history as normalized JSON. AnyAPI returns one normalized schema whichever source serves it. It costs from $108 per 1,000 requests, in US dollars with no subscription and no monthly minimum. Over the last 30 days, 100.0% of SEO search volume calls through AnyAPI succeeded, with a median response time of 3.3 seconds across 15 measured calls.