SEO API

SEO Search intent API

Classify AnyAPI SEO keyword search intent as normalized JSON.

POST/v1/run/seo.search_intent
Requests
-
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": {
    "intents": [
      {
        "intent": "example",
        "keyword": "a1b2c3d4"
      }
    ]
  },
  "found": true
}
Response interface
interface SeoSearchIntentResponse {
  data: {
    intents: {
      intent: string;
      keyword: string;
    }[];
  } | 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.search_intent
curl -X POST https://api.getanyapi.com/v1/run/seo.search_intent \
  -H "Authorization: Bearer $ANYAPI_KEY" \
  -H "Content-Type: application/json" \
  -d '{"keywords":["seo tools"],"language":"en"}'
FieldTypeExample value
Request body
keywordsarray["seo tools"]SEO keywords to classify by search intent.
languagestring"en"Language code for search intent classification.
Response
dataobject
data.intentsobject[]SEO keyword search intent records. Populated whenever the provider has data for the entity.
data.intents[].intentstringPrimary SEO search intent for the keyword. Populated whenever the provider has data for the entity.
data.intents[].keywordstringKeyword phrase. Populated whenever the provider has data for the entity.
foundboolean
Price
Price per request (ceiling)USD$0.17438
Price /1k keywordsUSD$0.17438

FAQ

About the SEO Search intent API

The AnyAPI SEO Search intent API returns SEO search intent data as normalized JSON from one POST call to /v1/run/seo.search_intent. Classify AnyAPI SEO keyword search intent as normalized JSON. AnyAPI returns one normalized schema whichever source serves it. It costs $0.17 per 1,000 keywords, and never more than $0.17438 for a single request, in US dollars with no subscription and no monthly minimum.

It costs $0.17 per 1,000 keywords, and never more than $0.17438 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.

Classify AnyAPI SEO keyword search 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.