Get TikTok Searched Suggest

Get the phrases TikTok would suggest for a partial query. The response is a compact list of suggested words with their group IDs, which makes it cheap to call and easy to feed straight into an autocomplete box. It doubles as keyword research, because the suggestions show how real users phrase a topic on TikTok before you commit budget to a search term.

Try on Playground
PrimeApi Endpoints > Search Endpoints > Searched Suggest
Endpoint Info
Request Method
:
GET
Request URL
:
https://api.primeapi.co/searched-suggest?keyword={keyword}
Required Parameters
:
keyword
Request Examples
Request Flow
:
Searched Suggest is a single GET call to /searched-suggest, and keyword has to travel with it in the query string. Swap YOUR_API_KEY for your own key and both snippets below run as they are.
Authentication
:
Header based. Send X-PrimeAPI-Key with every request — there is no OAuth handshake and no token to refresh.
Credits
:
One Searched Suggest call costs 1 credit. Your remaining balance comes back on every response in the X-PrimeAPI-Balance header, so you can watch usage without a second lookup.
cURL
curl -X GET "https://api.primeapi.co/searched-suggest?keyword=cat" \
  -H "X-PrimeAPI-Key: YOUR_API_KEY"
Python - Requests
import requests

url = "https://api.primeapi.co/searched-suggest?keyword=cat"
headers = {"X-PrimeAPI-Key": "YOUR_API_KEY"}

response = requests.get(url, headers=headers)

print(response.json())
print("Credits left:", response.headers.get("X-PrimeAPI-Balance"))
Endpoint Response
Example URL
:
https://api.primeapi.co/searched-suggest?keyword=cat
Content Type
:
JSON
Example Response
{
    "data": [
        {
            "word": "cat video",
            "group_id": "6565890822647088948"
        },
        {
            "word": "funny cats",
            "group_id": "7331764905621384285"
        },
        {
            "word": "funny cat videos",
            "group_id": "4500082299060709780"
        },
        {
            "word": "Cute Pets",
            "group_id": "8508675516378449830"
        },
        {
            "word": "cute cats \u2661",
            "group_id": "8946733227425319536"
        },
        {
            "word": "cat sound",
            "group_id": "5712805666633963231"
        },
        {
            "word": "cat memes",
            "group_id": "7651206132787265574"
        },
        {
            "word": "cute cat",
            "group_id": "2446865835936315736"
        },
        {
            "word": "cat videos",
            "group_id": "3880967187261938438"
        },
        {
            "word": "funny cat",
            "group_id": "4142006007841221389"
        }
    ],
    "status_code": 0,
    "status_msg": "",
    "log_id": "20250118001834E58D3C78F0358542A235"
}
Contact
You can contact us via Telegram or Gmail
Telegram Logo
Telegram
@primeapi_co
Gmail Logo
Gmail
primeapico@gmail