TikTok Popular Creators

POST1 Credit
https://api.crawlkit.sh/v1/crawl/tiktok/popular-creators

Read public TikTok Creative Center creator rankings by country and page with follower and like signals.

Try on Playground

Authentication

Send your Crawlkit API key as a Bearer token in the Authorization header.

Authorization: Bearer ck_your_api_key

Request Parameters

Send these JSON body fields in your request payload.

NameTypeDescription
countryCodestringTwo-letter country code.
pagenumberPage 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-creators', {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  "page": 110})11});12 13const { data } = await response.json();14console.log(data.items[0]?.username, data.items[0]?.followerCount);

Response

Success (200 OK): Returns service-specific structured payload.

Success response (200 OK)
1{2  "success": true,3  "data": {4    "page": 1,5    "countryCode": "US",6    "items": [7      {8        "rank": 1,9        "userId": "682930192",10        "nickname": "Fit Coach Daily",11        "username": "fitcoachdaily",12        "profileUrl": "https://www.tiktok.com/@fitcoachdaily",13        "avatarUrl": "https://p16-sign.tiktokcdn.com/...",14        "followerCount": 248000,15        "likeCount": 3200000,16        "region": "US",17        "sampleVideos": []18      }19    ],20    "timing": {21      "total": 252222    },23    "creditsUsed": 1,24    "creditsRemaining": 8625  }26}