TikTok Post
Extract TikTok post data for videos and slideshows including media, engagement, hashtags, author and music metadata. Accepts a public TikTok post URL or numeric video ID and supports paginated feed crawling.
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 |
|---|---|---|
url | string | Public target URL. |
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/post', {2 method: 'POST',3 headers: {4 'Authorization': 'Bearer YOUR_API_KEY',5 'Content-Type': 'application/json'6 },7 body: JSON.stringify({8 url: 'https://www.tiktok.com/@nike/video/7364512345678901234',9 options: {10 }11 })12});13 14const { data } = await response.json();15console.log(data.post.id, data.post.stats.plays);Response
Success (200 OK): Returns service-specific structured payload.
Success response (200 OK)
1{2 "success": true,3 "data": {4 "post": {5 "id": "7364512345678901234",6 "postUrl": "https://www.tiktok.com/@nike/video/7364512345678901234",7 "description": "New drop. #nike #justdoit",8 "createdAt": "2025-01-12T19:24:00Z",9 "mediaType": "video",10 "author": {11 "id": "6770059218303183878",12 "username": "nike",13 "nickname": "Nike",14 "avatar": "https://p16-sign-va.tiktokcdn.com/...",15 "verified": true16 },17 "music": {18 "title": "original sound",19 "author": "nike",20 "album": null,21 "duration": 14,22 "coverUrl": "https://p16-sign.tiktokcdn.com/..."23 },24 "video": {25 "duration": 14,26 "url": "https://v16m-default.tiktokcdn.com/...",27 "coverUrl": "https://p16-sign.tiktokcdn.com/...",28 "width": 1080,29 "height": 192030 },31 "images": [],32 "stats": {33 "plays": 1289000,34 "likes": 245000,35 "comments": 3200,36 "shares": 4100,37 "saves": 5600,38 "reposts": 74039 },40 "hashtags": [41 { "id": "16567153", "title": "nike" },42 { "id": "9238742", "title": "justdoit" }43 ],44 "locationCreated": "US",45 "isAd": false46 },47 "timing": { "total": 1900 },48 "creditsUsed": 1,49 "creditsRemaining": 9850 }51}