Endpoint Playground
Test Crawlora's Retrieve video comments (top-level & replies) 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/youtube/comments/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | YouTube video ID (11-character code) | |
| continuation_token | string | No | Pagination token returned by a previous request, first page if empty |
{
"code": 200,
"msg": "OK",
"data": {
"comments": [
{
"comment_id": "UgzjL_eQm9EVQN5n9Ex4AaABAg",
"content": "This is OpenAI's daily reminder to NOT PUT ADS ON CHATGPT!!!",
"channel_id": "UC1VvgrsdOvQoQvXixTe9Y3Q",
"user_name": "@hudsonsknexproductions",
"published_time": "2025-07-02T17:13:47.01045379Z",
"reply_count": 7
}
],
"continuation_token": "Eg0SC2F0WHlYUDN5WVo0GAYy0AIKpgJnZXRfcmFua2VkX3N0cmVhbXMtLUNxVUJDSUFFRlJlMzBUZ2FtZ0VLbFFFSTJGOFFnQVFZQnlLS0Fac1VKOWstb2JpbmtlTGExaFI3aEhFV..."
}
}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 a page of comments for a specific YouTube video.
{
"code": 200,
"msg": "OK",
"data": {
"comments": [
{
"comment_id": "UgzjL_eQm9EVQN5n9Ex4AaABAg",
"content": "This is OpenAI's daily reminder to NOT PUT ADS ON CHATGPT!!!",
"channel_id": "UC1VvgrsdOvQoQvXixTe9Y3Q",
"user_name": "@hudsonsknexproductions",
"published_time": "2025-07-02T17:13:47.01045379Z",
"reply_count": 7
}
],
"continuation_token": "Eg0SC2F0WHlYUDN5WVo0GAYy0AIKpgJnZXRfcmFua2VkX3N0cmVhbXMtLUNxVUJDSUFFRlJlMzBUZ2FtZ0VLbFFFSTJGOFFnQVFZQnlLS0Fac1VKOWstb2JpbmtlTGExaFI3aEhFV..."
}
}curl "https://api.crawlora.net/api/v1/youtube/comments/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"