Unofficial TikTok API — Trending Searches
GET/api/v1/trending_searches
TikTok's rising search keywords for a region (what is being searched now).
| Parameter | Description | |
|---|---|---|
region | optional | ISO-2 country code (default US). |
count | optional | How many keywords to return (1-50, default 15). |
Returns
region, count, and a words array of TikTok's raw trendingSearchWord objects.
Example Request
https://dev.omar-thing.site/api/v1/trending_searches?region=US&count=15&key=YOUR_API_KEY
Example Response
{
"data": {
"count": 15,
"region": "US",
"words": [
{
"trendingSearchWord": "iOS 27 Worldwide Rollout",
"trendingSearchWordType": "2"
},
{
"trendingSearchWord": "iOS 27 iPhone Update Tutorial",
"trendingSearchWordType": ""
}
]
},
"status": "success"
}Sends a live request using your API key above.
More Search endpoints
- Unofficial TikTok User Search API — Search users/accounts (one page per call, cursor-paginated). Filter by
followers,verifiedaccounts, ormatchusernames only. - Unofficial TikTok Video Search API — Search videos (one page per call, cursor-paginated). Filter by
dateand sort bylikesornewest. - Unofficial TikTok Photo Search API — Search photo/slideshow posts (one page per call, cursor-paginated).
- Unofficial TikTok Hashtag Search API — Search hashtags (one page per call, cursor-paginated).
- Unofficial TikTok Place Search API — Search places/POIs (venues, landmarks, restaurants). Results are localized to the
countryyou pass (ISO-2). One page per call, cursor-paginated. - Unofficial TikTok Music Search API — Search sounds/music (one page per call, cursor-paginated).
- Unofficial TikTok Search Suggestions API — Search autocomplete — the suggestions shown while you type.
- Unofficial TikTok Related Searches API — Related search terms suggested under a video ("others searched for"). Add
queryto steer them toward a topic.