TikTok Profile
Scrape public TikTok profile data including identity fields, account metadata, and follower metrics. Built for creator discovery and growth tracking.
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 |
|---|---|---|
username | string | Public username. |
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/profile', {2 method: 'POST',3 headers: {4 'Authorization': 'Bearer YOUR_API_KEY',5 'Content-Type': 'application/json'6 },7 body: JSON.stringify({8 username: '@nike',9 options: {10 }11 })12});13 14const { data } = await response.json();15console.log(data.profile.username, data.profile.stats.followers);Response
Success (200 OK): Returns service-specific structured payload.
Success response (200 OK)
1{2 "success": true,3 "data": {4 "profile": {5 "id": "6770059218303183878",6 "secUid": "MS4wLjABAAAAX...",7 "username": "nike",8 "nickname": "Nike",9 "bio": "Just Do It.",10 "bioLink": "https://www.nike.com",11 "avatar": "https://p16-sign-va.tiktokcdn.com/...",12 "verified": true,13 "privateAccount": false,14 "isOrganization": true,15 "hasShop": true,16 "commerceUser": true,17 "ttSeller": false,18 "category": "Sports, Fitness & Outdoors",19 "language": "en",20 "region": "US",21 "createdAt": "2019-12-18T00:00:00Z",22 "stats": {23 "followers": 9600000,24 "following": 35,25 "likes": 32400000,26 "videos": 145,27 "friends": 0,28 "digg": 1229 }30 },31 "timing": { "total": 1700 },32 "creditsUsed": 1,33 "creditsRemaining": 9934 }35}