TikTok API

TikTok Search suggestions API

Get the search terms TikTok suggests for a keyword, each with its language and relative weight - the queries real TikTok users type around your topic.

POST/v1/run/tiktok.search_suggestions
Requests
-
30d

Pricing

One price, in dollars

Providers
Giraffe- served- uptime- p50$1.20/1k reqflat

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": [
      {
        "language": "en",
        "score": 4.6,
        "text": "A short example description of this item."
      }
    ]
  },
  "found": true
}
Response interface
interface TiktokSearchSuggestionsResponse {
  data: {
    suggestions: {
      language?: string;
      score?: number;
      text: 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/tiktok.search_suggestions
curl -X POST https://api.getanyapi.com/v1/run/tiktok.search_suggestions \
  -H "Authorization: Bearer $ANYAPI_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query":"protein powder"}'
FieldTypeExample value
Request body
querystring"protein powder"Seed keyword to expand.
Response
dataobject
data.suggestionsobject[]Suggested searches, most relevant first.
data.suggestions[].languagestringBCP-47 language code TikTok assigns the suggestion, e.g. en.
data.suggestions[].scorenumberTikTok's relative weight for the suggestion. Comparable within one response only; it is not a search volume.
data.suggestions[].textstringThe suggested search term. Populated whenever the provider has data for the entity.
foundboolean
Price
Price per requestUSD$0.0012
Price /1k reqUSD$1.20

FAQ

About the TikTok Search suggestions API

The AnyAPI TikTok Search suggestions API returns TikTok search suggestions data as normalized JSON from one POST call to /v1/run/tiktok.search_suggestions. Get the search terms TikTok suggests for a keyword, each with its language and relative weight - the queries real TikTok users type around your topic. AnyAPI returns one normalized schema whichever source serves it. It costs from $1.20 per 1,000 requests, in US dollars with no subscription and no monthly minimum.

It costs from $1.20 per 1,000 requests, 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.

Get the search terms TikTok suggests for a keyword, each with its language and relative weight - the queries real TikTok users type around your topic. 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.