TikTok Trending feed API
Sample TikTok's For You feed as served to a viewer in one country (caption, views, likes, comments, author). Returns a rotating sample, not a ranked chart.
Try it
Make your first request
{
"data": {
"videos": [
{
"author": "Alex Rivera",
"caption": "A short example description of this item.",
"comments": 12500,
"createdUtc": 12.5,
"id": "a1b2c3d4",
"likes": 12500,
"region": "CA",
"shares": 13,
"url": "https://example.com/page",
"views": 12500
}
]
},
"found": true
}interface TiktokTrendingFeedResponse {
data: {
videos: {
author: string;
caption: string;
comments: number;
createdUtc: number;
id: string;
likes: number;
region: string;
shares: number;
url: 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-09-16 · uptime and latency measured over 30dcurl -X POST https://api.getanyapi.com/v1/run/tiktok.trending_feed \
-H "Authorization: Bearer $ANYAPI_KEY" \
-H "Content-Type: application/json" \
-d '{"region":"US"}'| Field | Type | Example value |
|---|---|---|
| Request body | ||
| region | string | "US"2-letter country code for the proxy location (e.g. "US"). |
| trim | string | Set to true to return a simplified response. |
| Response | ||
| data | object | |
| data.videos | object[] | Populated whenever the provider has data for the entity. |
| data.videos[].author | string | Populated whenever the provider has data for the entity. |
| data.videos[].caption | string | |
| data.videos[].comments | integer | |
| data.videos[].createdUtc | number | UTC epoch timestamp in seconds (Unix time). Multiply by 1000 for a JS Date in milliseconds. Populated whenever the provider has data for the entity. |
| data.videos[].id | string | Populated whenever the provider has data for the entity. |
| data.videos[].likes | integer | |
| data.videos[].region | string | Populated whenever the provider has data for the entity. |
| data.videos[].shares | integer | |
| data.videos[].url | string | Populated whenever the provider has data for the entity. |
| data.videos[].views | integer | |
| found | boolean | |
| Price | ||
| Price per request | USD | $0.0012 |
| Price /1k req | USD | $1.20 |
FAQ
About the TikTok Trending feed API
The AnyAPI TikTok Trending feed API returns TikTok trending feed data as normalized JSON from one POST call to /v1/run/tiktok.trending_feed. Sample TikTok's For You feed as served to a viewer in one country (caption, views, likes, comments, author). Returns a rotating sample, not a ranked chart. AnyAPI returns one normalized schema whichever source serves it. It costs from $1.20 per 1,000 requests, in US dollars with no subscription and no monthly minimum. Over the last 30 days, 96.3% of TikTok trending feed calls through AnyAPI succeeded, with a median response time of 5.8 seconds across 82 measured calls.