Endpoint Playground
Test Crawlora's Retrieve TikTok video comments 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/comments?aweme_id=7304809083817774382" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| aweme_id | string | Yes | 7304809083817774382 | TikTok video id from the video URL |
| cursor | integer | No | Pagination cursor |
{
"code": 200,
"msg": "OK",
"data": {
"alias_comment_deleted": false,
"comments": [
{
"author_pin": false,
"aweme_id": "7304809083817774382",
"cid": "7321553576038269739",
"collect_stat": 0,
"comment_language": "en",
"comment_post_item_ids": null
}
],
"cursor": 20,
"extra": {
"api_debug_info": null,
"fatal_item_ids": null,
"now": 1733911707000
},
"has_filtered_comments": 0,
"has_more": 1
}
}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 top-level TikTok video comments with cursor-based pagination.
{
"code": 200,
"msg": "OK",
"data": {
"alias_comment_deleted": false,
"comments": [
{
"author_pin": false,
"aweme_id": "7304809083817774382",
"cid": "7321553576038269739",
"collect_stat": 0,
"comment_language": "en",
"comment_post_item_ids": null
}
],
"cursor": 20,
"extra": {
"api_debug_info": null,
"fatal_item_ids": null,
"now": 1733911707000
},
"has_filtered_comments": 0,
"has_more": 1
}
}curl "https://api.crawlora.net/api/v1/tiktok/comments?aweme_id=<aweme_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"