Endpoint Playground
Test Crawlora's TikTok Creative Center Hashtags API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/tiktok/creative-center/hashtags?country_code=<country_code>&period=7" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| country_code | string | Yes | ISO-2 country code | |
| period | integer | No | 7 | Lookback window in days |
{
"code": 200,
"msg": "OK",
"data": {
"hashtags": [
{
"hashtag_id": "7034820182681862190",
"hashtag_name": "spidermanbrandnewday",
"rank": 1,
"publish_count": 155696,
"video_views": 580603391,
"industry_ids": [
23000000000
],
"popularity_curve": [
{
"timestamp": 1784851200,
"value": 1.09
},
{
"timestamp": 1785369600,
"value": 100
}
],
"top_creators": [
{
"creator_id": "7517276699046887479",
"tiktok_uid": "6699136201699640325",
"handle": "spidermanmovie",
"nickname": "Spider-Man Movie",
"country_code": "US",
"rank": 1,
"follower_count": 5492852,
"avatar_url": "https://example.tiktokcdn.com/avatar.jpeg"
}
]
}
],
"total_count": 3
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns TikTok Creative Center's ranked trending hashtags for a country and period. TikTok gates this endpoint's full result set behind a logged-in TikTok One account: an anonymous request always receives at most 3 hashtags regardless of country or period.
{
"code": 200,
"msg": "OK",
"data": {
"hashtags": [
{
"hashtag_id": "7034820182681862190",
"hashtag_name": "spidermanbrandnewday",
"rank": 1,
"publish_count": 155696,
"video_views": 580603391,
"industry_ids": [
23000000000
],
"popularity_curve": [
{
"timestamp": 1784851200,
"value": 1.09
},
{
"timestamp": 1785369600,
"value": 100
}
],
"top_creators": [
{
"creator_id": "7517276699046887479",
"tiktok_uid": "6699136201699640325",
"handle": "spidermanmovie",
"nickname": "Spider-Man Movie",
"country_code": "US",
"rank": 1,
"follower_count": 5492852,
"avatar_url": "https://example.tiktokcdn.com/avatar.jpeg"
}
]
}
],
"total_count": 3
}
}curl "https://api.crawlora.net/api/v1/tiktok/creative-center/hashtags?country_code=<country_code>" \
-H "x-api-key: $CRAWLORA_API_KEY"