SEO API

SEO Keyword suggestions API

Find AnyAPI SEO keyword suggestions from a seed term with volume, CPC, competition, difficulty, and intent as normalized JSON.

POST/v1/run/seo.keyword_suggestions
Uptime
100.00%
30d · 531 calls
Requests
531
30d · weekly, last 12 wks
Response
0.5s
median · 30d

Try it

Make your first request

Open in
Get a free key
Sample response
Free runs return only the first 3 results. Fund a key to get the full response.
{
  "data": {
    "suggestions": [
      {
        "competition": "example",
        "cpc": 12.5,
        "keyword": "a1b2c3d4",
        "keywordDifficulty": 42,
        "searchIntent": "example",
        "searchVolume": 12500,
        "updatedUtc": 12.5
      }
    ]
  },
  "found": true
}
Response interface
interface SeoKeywordSuggestionsResponse {
  data: {
    suggestions: {
      competition?: string;
      cpc?: number;
      keyword: string;
      keywordDifficulty?: number;
      searchIntent?: string;
      searchVolume?: number;
      updatedUtc?: 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 30d
POST /v1/run/seo.keyword_suggestions
curl -X POST https://api.getanyapi.com/v1/run/seo.keyword_suggestions \
  -H "Authorization: Bearer $ANYAPI_KEY" \
  -H "Content-Type: application/json" \
  -d '{"keyword":"project management software","language":"en","limit":5,"location":2840}'
FieldTypeExample value
Request body
keywordstring"project management software"Seed SEO keyword used to generate keyword suggestions.
exactMatchbooleanWhen true, only return suggestions that contain the exact seed phrase; when false (the default), allow reordered and partial-match suggestions.
languagestring"en"Language code for SEO metrics.
limitinteger5Maximum number of keyword suggestions to return. You are billed per returned result, so a lower limit costs less.
locationinteger2840Location code for SEO metrics. The default is the United States.
orderByenumSort order for the returned suggestions: by search volume, cost per click, or keyword difficulty, ascending or descending. Omit for the default order.
Response
dataobject
data.suggestionsobject[]SEO keyword suggestion records. Populated whenever the provider has data for the entity.
data.suggestions[].competitionstringPaid-search competition level for the keyword suggestion. Populated whenever the provider has data for the entity.
data.suggestions[].cpcnumberAverage paid-search cost per click in USD. Populated whenever the provider has data for the entity.
data.suggestions[].keywordstringKeyword suggestion phrase. Populated whenever the provider has data for the entity.
data.suggestions[].keywordDifficultyintegerEstimated organic ranking difficulty on a 0-100 scale. Populated whenever the provider has data for the entity.
data.suggestions[].searchIntentstringPrimary SEO search intent for the keyword suggestion. Populated whenever the provider has data for the entity.
data.suggestions[].searchVolumeintegerAverage monthly search volume for the keyword suggestion. Populated whenever the provider has data for the entity.
data.suggestions[].updatedUtcnumberUTC epoch timestamp in seconds (Unix time). Multiply by 1000 for a JS Date in milliseconds.
foundboolean
Price
Price per request (ceiling)USD$0.17496
Price /1k resultsUSD$0.17496

FAQ

About the SEO Keyword suggestions API

The AnyAPI SEO Keyword suggestions API returns SEO keyword suggestions data as normalized JSON from one POST call to /v1/run/seo.keyword_suggestions. Find AnyAPI SEO keyword suggestions from a seed term with volume, CPC, competition, difficulty, and intent as normalized JSON. AnyAPI returns one normalized schema whichever source serves it. It costs $0.17 per 1,000 results, and never more than $0.17496 for a single request, in US dollars with no subscription and no monthly minimum. Over the last 30 days, 100.0% of SEO keyword suggestions calls through AnyAPI succeeded, with a median response time of 0.5 seconds across 531 measured calls.

It costs $0.17 per 1,000 results, and never more than $0.17496 for a single request, in US dollars with no subscription and no monthly minimum. You fund one USD wallet, each call draws it down, and a failed request costs $0.

Find AnyAPI SEO keyword suggestions from a seed term with volume, CPC, competition, difficulty, and intent as normalized JSON. The response is normalized JSON with the same envelope every AnyAPI endpoint returns, so parsing a second endpoint is a change of URL and nothing else.

Over the last 30 days, 100.0% of SEO keyword suggestions calls through AnyAPI succeeded, with a median response time of 0.5 seconds across 531 measured calls. These are AnyAPI's own measurements of traffic through the gateway, recomputed continuously, not a published service-level target.