TikTok Popular Hashtags

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

Read public TikTok Creative Center hashtag rankings by country, period, and page with view and publish counts.

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.
periodstringTime window in days.
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-hashtags', {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]?.hashtagName, data.items[0]?.videoViews);

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        "hashtagId": "315930120",11        "hashtagName": "mealprep",12        "videoViews": 1480000000,13        "publishCount": 82000,14        "trend": [15          12,16          19,17          2718        ],19        "creators": [],20        "industry": null,21        "countryInfo": null22      }23    ],24    "timing": {25      "total": 254226    },27    "creditsUsed": 1,28    "creditsRemaining": 8429  }30}