TikTok Trending hashtags API
Rank TikTok's trending hashtags for one country and industry, with each hashtag's daily popularity curve, post count, video views, and leading creators. Ranks 15 industry categories, or omit industry for the all-industries board. TikTok publishes only the top 3 hashtags per board to anonymous callers, so limit 1-3 is served cheaply; a limit above 3 routes to a dearer authenticated source that returns the full ranking. Covers 27 markets: AE, AR, AU, BR, CA, CO, DE, EG, ES, FR, GB, ID, IL, IT, JP, KR, MX, MY, PH, SA, SG, TH, TR, TW, US, VN, ZA.
- Category SocialRequests / mo 34Routing 2 lanes · auto failover
Provider network
Providers ranked by traffic
click a provider for traffic and endpoints · routing stays automaticcapped at $0.11 per request1 result$0.0283350 results$0.069100 results$0.11 capYou are charged for what comes back. Lower the limit to pay less - and no single request can cost more than the cap, however much comes back.
Call it
Make your first request
POST /v1/run/tiktok.trending_hashtags · same shape for every APIimport os, requests res = requests.post( "https://api.getanyapi.com/v1/run/tiktok.trending_hashtags", headers={"Authorization": f"Bearer {os.environ['ANYAPI_KEY']}"}, json={}, ) print(res.json())
{
"data": {
"items": [
{
"hashtag": "a1b2c3d4",
"hashtagId": "a1b2c3d4",
"industryIds": [
1024
],
"popularity": [
{
"atUtc": 12.5,
"value": 19.99
}
],
"posts": 248,
"rank": 1,
"topCreators": [
{
"countryCode": "US",
"followers": 12500,
"handle": "alex_rivera",
"image": "https://example.com/image.jpg",
"nickname": "Example title",
"rank": 1,
"userId": "a1b2c3d4"
}
],
"views": 12500
}
]
},
"found": true
}interface TiktokTrendingHashtagsResponse {
data: {
items: {
hashtag: string;
hashtagId: string;
industryIds?: number[];
popularity?: {
atUtc: number;
value: number;
}[];
posts?: number;
rank: number;
topCreators?: {
countryCode?: string;
followers?: number;
handle?: string;
image?: string;
nickname?: string;
rank?: number;
userId?: string;
}[];
views?: number;
}[];
} | null;
found: boolean;
}Full parameter and response reference - every field, type, and example for this endpoint.
Reference
Request, response, and price
Last verified 2026-08-23 · uptime and latency measured over 30dcurl -X POST https://api.getanyapi.com/v1/run/tiktok.trending_hashtags \
-H "Authorization: Bearer $ANYAPI_KEY" \
-H "Content-Type: application/json" \
-d '{"limit":3,"period":7,"region":"US"}'| Field | Type | Example value |
|---|---|---|
| Request body | ||
| industry | enum | Restrict the ranking to one industry. Omit for the all-industries board. |
| limit | integer | 3Maximum number of ranked hashtags to return, from 1 through 100 (default 3). TikTok publishes only the top 3 hashtags per board to anonymous callers, so 1 through 3 is served by the cheapest source; a higher limit routes to a dearer source that reads the full ranking. |
| period | enum | 7Lookback window in days that the ranking and the popularity curve cover (default 7). |
| region | enum | "US"Two-letter country code of the market whose hashtag ranking to read (default US). Each market is ranked independently, so US and DE return different boards. |
| Response | ||
| data | object | The ranked hashtags for the requested market, or null when unavailable. |
| data.items | object[] | Hashtags in the market's own ranking order, best first. Populated whenever the provider has data for the entity. |
| data.items[].hashtag | string | Hashtag name without the leading #. Populated whenever the provider has data for the entity. |
| data.items[].hashtagId | string | Stable TikTok hashtag identifier. Populated whenever the provider has data for the entity. |
| data.items[].industryIds | integer[] | TikTok industry identifiers the hashtag is classified under, matching the ids behind the `industry` input. Empty when TikTok classifies the hashtag under none. |
| data.items[].popularity | object[] | Daily popularity curve across the requested period, oldest first. Values are normalized 0-100 within this hashtag's own window, where 100 is its peak day, so they compare days of one hashtag rather than two hashtags. Populated whenever the provider has data for the entity. |
| data.items[].popularity[].atUtc | number | UTC epoch timestamp in seconds (Unix time). Multiply by 1000 for a JS Date in milliseconds. |
| data.items[].popularity[].value | number | Normalized popularity for that day, 0 through 100. |
| data.items[].posts | integer | Number of videos published with the hashtag during the period. Populated whenever the provider has data for the entity. |
| data.items[].rank | integer | One-based position in this market's ranking for the requested period. Populated whenever the provider has data for the entity. |
| data.items[].topCreators | object[] | Creators TikTok surfaces as leading the hashtag, in its own order. |
| data.items[].topCreators[].countryCode | string | Two-letter country code TikTok reports for the creator. |
| data.items[].topCreators[].followers | integer | Creator's follower count. |
| data.items[].topCreators[].handle | string | Creator's TikTok username without the leading @. |
| data.items[].topCreators[].image | string | Creator's avatar image URL. |
| data.items[].topCreators[].nickname | string | Creator's display name. |
| data.items[].topCreators[].rank | integer | One-based position among the hashtag's top creators. |
| data.items[].topCreators[].userId | string | Creator's stable TikTok user id. |
| data.items[].views | integer | Total video views the hashtag drew during the period. Populated whenever the provider has data for the entity. |
| found | boolean | Whether a hashtag ranking was resolved for the requested market. |
| Price | ||
| Price per request | USD | $0.0012 |
| Price /1k req | USD | $1.20 |
FAQ
About the TikTok Trending hashtags API
The AnyAPI TikTok Trending hashtags API returns TikTok trending hashtags data as normalized JSON from one POST call to /v1/run/tiktok.trending_hashtags. Rank TikTok's trending hashtags for one country and industry, with each hashtag's daily popularity curve, post count, video views, and leading creators. Ranks 15 industry categories, or omit industry for the all-industries board. TikTok publishes only the top 3 hashtags per board to anonymous callers, so limit 1-3 is served cheaply; a limit above 3 routes to a dearer authenticated source that returns the full ranking. Covers 27 markets: AE, AR, AU, BR, CA, CO, DE, EG, ES, FR, GB, ID, IL, IT, JP, KR, MX, MY, PH, SA, SG, TH, TR, TW, US, VN, ZA. AnyAPI routes each request across 2 sources and falls back automatically when one fails. It costs from $1.20 per 1,000 requests, in US dollars with no subscription and no monthly minimum. Over the last 30 days, 100.0% of TikTok trending hashtags calls through AnyAPI succeeded, with a median response time of 0.8 seconds across 34 measured calls.
More to call
Other TikTok endpoints
Get started
Two ways to start on AnyAPI
Humans fund a USD wallet and pay per request. Agents point a coding agent at one URL and onboard themselves.