TikTok Search Suggestions API
Get the autocomplete terms TikTok suggests in its search bar for a keyword — the real phrases people search, ranked, so you can find trending queries and long-tail keyword ideas.
GET request to /v1/tiktok/search-suggestions that responds with clean JSON and costs 2 credits. Pass cache=true for a free 24h cache hit; default is always fresh. Start with 100 free credits — no credit card.What is the TikTok Search Suggestions API?
Give the TikTok Search Suggestions API a seed keyword and it returns the autocomplete phrases TikTok shows in its search bar as clean JSON — the actual phrases people search for. Each suggestion row carries only what varies — the search term, its rank (1 = top of the list), and a ready-to-open search URL. The envelope echoes the market you requested once: query, country (named to match the country parameter), and language. Use the country and language parameters to see what a specific market is searching (for example US in English, or DE in German). Great for TikTok keyword research, trending queries, and content planning. No TikTok login required. Flat 2 credits per call, no matter how many suggestions return. Pass cache=true to serve from the 24h shared cache (0 credits on hit); default is always fresh.
What you get
- The autocomplete terms TikTok suggests for your keyword
- Each suggestion with its rank — the order it appears in the search bar
- A ready-to-open searchUrl that runs that exact search on TikTok
- Envelope country + language naming the market you requested
- Localize by country + language to see what a specific market searches
- Flat 2 credits per call
Try it
Fill in the parameters below and copy a ready-to-run request, or open the live Playground to run it against your account (no API key paste).
Parameters
curl "https://api.captapi.com/v1/tiktok/search-suggestions?q=makeup" \
-H "Authorization: Bearer capt_live_..."
# or: -H "x-api-key: capt_live_..."Edit the parameters and the code updates instantly. Switch languages and hit copy.
Example response
{
"success": true,
"data": {
"platform": "tiktok",
"query": "makeup",
"country": "US",
"language": "en-US",
"totalReturned": 5,
"suggestions": [
{
"suggestion": "makeup tutorial",
"rank": 1,
"searchUrl": "https://www.tiktok.com/search?q=makeup+tutorial"
},
{
"suggestion": "makeup brush set",
"rank": 2,
"searchUrl": "https://www.tiktok.com/search?q=makeup+brush+set"
}
]
}
}Billing metadata is returned in response headers: X-Captapi-Credits (credits charged), X-Captapi-Cache (hit or miss), and X-Captapi-Source. Failed requests (4xx/5xx) are never charged. See the full list of error codes in the error reference.
Response structure
A successful call returns success, cached, creditsUsed, and a data object with the following fields:
Top-level fields
platformPlatform identifier for this response (matches the endpoint's platform).queryThe seed keyword the suggestions expand (envelope-level; rows carry only suggestion/rank/searchUrl).countryEnvelope echo of the country query param (e.g. US) — the market suggestions were localized for. Named country to match the request; not a creator's home country (this endpoint has no regionSource).languageEnvelope echo of the language query param (e.g. en-US) — the interface language used to localize suggestions.totalReturnedNumber of items returned in this response.
Suggestions
Each item in suggestions contains:
suggestionA search term TikTok autocompletes for your keyword — a phrase real users search for.rankRank position in the list.searchUrlDirect TikTok search URL for this suggestion — open it to see the matching results.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| q | string | Yes | Seed keyword to expand into autocomplete suggestions, e.g. skincare. |
| country | string | No | Two-letter ISO country code that localizes the suggestions to a market, e.g. US, GB, DE. Default US. |
| language | string | No | Interface language for the suggestions, e.g. en-US or de-DE. Default en-US. |
| limit | integer | No | Max items to return (default 20, max 100). Flat 2 credits per call. |
| cache | boolean | No | Set true to serve from the 24h response cache (0 credits on hit). Default false — always fetch fresh. Envelope includes cached + cachedAt on hits. |
Authentication: send your key as Authorization: Bearer capt_live_.... A typical call costs 2 credits. Pass cache=true for a free 24h cache hit; default is always fresh.
tiktok_search_suggestions via @captapi/mcp. Set it up →How it works
- 1. Sign up — get 100 free credits, no card required.
- 2. Create a key from your dashboard.
- 3. Send one request to
/v1/tiktok/search-suggestionsand parse the JSON response.
Use cases
Trend Discovery
Find trending content by keyword or hashtag.
Content Sourcing
Build feeds and playlists programmatically.
Monitoring
Track topics, brands, and competitors.
Research
Sample large sets of content for analysis.
Frequently asked questions
What does the TikTok Search Suggestions API do?+
The TikTok Search Suggestions API lets you search and return matching results from a public TikTok query using one GET request to /v1/tiktok/search-suggestions. It returns clean JSON — no OAuth or infrastructure setup required.
How many credits does the TikTok Search Suggestions API cost?+
Each successful call costs 2 credits. Pass cache=true to serve from the 24h cache (0 credits on hit); default is always fresh. Hits include cached + cachedAt. Selected profile endpoints also accept cacheMaxAge=1d|3d|7d|14d|30d. Failed or empty results are never charged.
Do I need a TikTok API key or OAuth?+
No. A single Captapi key works across every platform Captapi supports — YouTube, TikTok, Instagram, Facebook, Twitter/X, Reddit, Threads, Bluesky, Pinterest, LinkedIn, Rumble, Spotify, Kwai, and more. We handle proxies, rate limits, retries, and authentication for you.
Is the TikTok Search Suggestions API suitable for production use?+
Yes. It is a stable REST endpoint with predictable JSON and automatic retries. Pass cache=true to serve from the 24h cache (0 credits on hit); default is always fresh. Hits include cached + cachedAt. Selected profile endpoints also accept cacheMaxAge=1d|3d|7d|14d|30d. Use it for analytics, monitoring, and content automation.
More TikTok APIs
Ready to use the TikTok Search Suggestions API?
Sign up, grab your key, and make your first call in 60 seconds.