TikTok Trending Feed
Fetch a normalized snapshot of the public TikTok explore/trending feed for fast trend sampling.
Try on PlaygroundAuthentication
Send your Crawlkit API key as a Bearer token in the Authorization header.
Authorization: Bearer ck_your_api_keyRequest Parameters
Send these JSON body fields in your request payload.
| Name | Type | Description |
|---|---|---|
maxResults | number | Maximum result count. |
Example Request
Use direct HTTP requests against the public API base URL.
Example request
1const response = await fetch('https://api.crawlkit.sh/v1/crawl/tiktok/trending-feed', {2 method: 'POST',3 headers: {4 'Authorization': 'Bearer YOUR_API_KEY',5 'Content-Type': 'application/json'6 },7 body: JSON.stringify({8 "maxResults": 10,9 "options": {10 "timeout": 3000011 }12})13});14 15const { data } = await response.json();16console.log(data.posts.length, data.posts[0]?.postUrl);Response
Success (200 OK): Returns service-specific structured payload.
Success response (200 OK)
1{2 "success": true,3 "data": {4 "posts": [5 {6 "id": "749201930777",7 "postUrl": "https://www.tiktok.com/@trendwatch/video/749201930777",8 "description": "A format taking over explore.",9 "mediaType": "video"10 }11 ],12 "pagination": {13 "cursor": 0,14 "hasMore": false15 },16 "timing": {17 "total": 296818 },19 "creditsUsed": 1,20 "creditsRemaining": 8321 }22}