TikTok Popular Songs
Read public TikTok Creative Center song rankings by country, period, and page for audio trend research.
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 |
|---|---|---|
countryCode | string | Two-letter country code. |
period | string | Time window in days. |
page | number | Page number to fetch. |
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/popular-songs', {2 method: 'POST',3 headers: {4 'Authorization': 'Bearer YOUR_API_KEY',5 'Content-Type': 'application/json'6 },7 body: JSON.stringify({8 "countryCode": "US",9 "period": "7",10 "page": 111})12});13 14const { data } = await response.json();15console.log(data.items[0]?.title, data.items[0]?.videoCount);Response
Success (200 OK): Returns service-specific structured payload.
Success response (200 OK)
1{2 "success": true,3 "data": {4 "page": 1,5 "period": "7",6 "countryCode": "US",7 "items": [8 {9 "rank": 1,10 "clipId": "749001920120",11 "title": "Original sound - fitchef",12 "author": "fitchef",13 "musicUrl": "https://www.tiktok.com/music/original-sound-749001920120",14 "coverUrl": "https://p16-sign.tiktokcdn.com/...",15 "videoCount": 12840,16 "trend": [17 12,18 19,19 2720 ],21 "relatedItems": []22 }23 ],24 "timing": {25 "total": 257026 },27 "creditsUsed": 1,28 "creditsRemaining": 8729 }30}