TikTok Song Videos
Fetch normalized TikTok posts that use a specific sound or clip ID with cursor pagination.
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 |
|---|---|---|
clipId | string | TikTok sound or clip ID. |
cursor | number | Pagination cursor. |
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/song-videos', {2 method: 'POST',3 headers: {4 'Authorization': 'Bearer YOUR_API_KEY',5 'Content-Type': 'application/json'6 },7 body: JSON.stringify({8 "clipId": "7016547803243027205",9 "cursor": 0,10 "options": {11 "timeout": 3000012 }13})14});15 16const { data } = await response.json();17console.log(data.posts.length, data.pagination.hasMore);Response
Success (200 OK): Returns service-specific structured payload.
Success response (200 OK)
1{2 "success": true,3 "data": {4 "clipId": "7016547803243027205",5 "posts": [6 {7 "id": "749201930555",8 "postUrl": "https://www.tiktok.com/@fitchef/video/749201930555",9 "description": "Meal prep with trending sound.",10 "mediaType": "video"11 }12 ],13 "pagination": {14 "cursor": 12,15 "hasMore": true16 },17 "timing": {18 "total": 286319 },20 "creditsUsed": 1,21 "creditsRemaining": 8922 }23}