Endpoint Playground
Test Crawlora's Search TikTok 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/search/hashtag?keyword=chatgpt" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| keyword | string | Yes | chatgpt | Search keyword |
| cursor | integer | No | Pagination cursor | |
| count | integer | No | Result count, clamped to 50 |
{
"code": 200,
"msg": "OK",
"data": {
"type": 3,
"challenge_list": [
{
"challenge_info": {
"cha_name": "chatgpt",
"cid": "163321922"
}
}
],
"cursor": 20,
"has_more": 1,
"status_code": 0
}
}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.
Searches TikTok hashtags/challenges by keyword with cursor-based pagination.
{
"code": 200,
"msg": "OK",
"data": {
"type": 3,
"challenge_list": [
{
"challenge_info": {
"cha_name": "chatgpt",
"cid": "163321922"
}
}
],
"cursor": 20,
"has_more": 1,
"status_code": 0
}
}curl "https://api.crawlora.net/api/v1/tiktok/search/hashtag?keyword=<keyword>" \
-H "x-api-key: $CRAWLORA_API_KEY"