Skip to main content
GET
/
api
/
v1
/
search
/
suggest
Get keyword search suggestions
curl --request GET \
  --url https://full-tiktok-api.p.rapidapi.com/api/v1/search/suggest \
  --header 'x-rapidapi-key: <api-key>'
{
  "meta": {
    "request_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "timestamp": "2025-03-12T14:32:01.498Z",
    "cached": false,
    "version": "2025-01"
  },
  "data": [
    "<string>"
  ],
  "pagination": null,
  "error": {
    "code": "NOT_FOUND",
    "message": "The requested resource was not found.",
    "details": null
  }
}
Returns an array of suggested search terms related to the input keyword. Useful for building autocomplete or discovering related topics. Also accepted as ?q=.

Authorizations

x-rapidapi-key
string
header
required

Your RapidAPI subscription key. Injected automatically by the RapidAPI gateway in production.

Query Parameters

keyword
string
required

Partial or full search term to get suggestions for. Also accepted as ?q=

Response

Success

meta
object

Response metadata present in every API response

data
string[]
pagination
object

Always null; this endpoint returns a single object and does not paginate.

Example:

null

error
object

Error details. Present only when the request failed; null on success.