Endpoint Playground
Test Crawlora's Yahoo News Comment 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/yahoo-news/comments/replies?content_id=<content_id>&comment_id=<comment_id>&sort=newest" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| content_id | string | Yes | Article id (the id field returned by home/category/article) | |
| comment_id | string | Yes | Parent comment id (the id field returned by /yahoo-news/comments) | |
| sort | string | No | newest | Sort order, defaults to newest |
| cursor | string | No | Pagination cursor from a previous response's next_cursor | |
| count | integer | No | Number of replies to return, default 10, clamped to 1..50 |
{
"code": 200,
"msg": "OK",
"data": {
"content_id": "afd0da86-88c7-320f-a3c9-d1dcad7920c7",
"comment_id": "f1168670-2356-4bcf-bfb9-240b8e4964b1",
"sort": "newest",
"total_count": 195,
"items": [
{
"id": "30f70e55-dd1c-4c38-802b-c4c87bef7799",
"body": "He doesn't know how to do good for others.",
"created_at": "2026-08-13T21:35:25.269Z",
"pinned": false,
"author": {
"nickname": "Kelly",
"handle": "kelly122116",
"avatar_url": "https://s.yimg.com/ag/images/4556/23905210787_399a3c_64sq.jpg",
"has_default_avatar": false,
"total_comment_count": 1230,
"total_reaction_count": 1999
},
"reply_count": 0,
"reactions": {
"thumbs_up": 1,
"thumbs_down": 0,
"heart": 0,
"laugh": 0,
"clap": 0,
"sad": 0,
"total": 1
}
}
],
"has_next_page": true,
"next_cursor": "eyJ0aW1lc3RhbXBNaWNyb3MiOjE3ODY2NTY4NjMxMTY1OTIsImlkIjoiMDVhZjgzOTMtZjYzOS00ZTdmLWE0ZjEtNzI5M2YyMDVkOGZlIiwiaW5zdGFudCI6IjIwMjYtMDgtMTNUMjE6MzQ6MjMuMTE2NTkyWiJ9"
}
}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 a comment's replies: author, body, reaction counts, and pin status, with sort order and cursor-based pagination. Sourced from Yahoo's own comment platform gateway.
{
"code": 200,
"msg": "OK",
"data": {
"content_id": "afd0da86-88c7-320f-a3c9-d1dcad7920c7",
"comment_id": "f1168670-2356-4bcf-bfb9-240b8e4964b1",
"sort": "newest",
"total_count": 195,
"items": [
{
"id": "30f70e55-dd1c-4c38-802b-c4c87bef7799",
"body": "He doesn't know how to do good for others.",
"created_at": "2026-08-13T21:35:25.269Z",
"pinned": false,
"author": {
"nickname": "Kelly",
"handle": "kelly122116",
"avatar_url": "https://s.yimg.com/ag/images/4556/23905210787_399a3c_64sq.jpg",
"has_default_avatar": false,
"total_comment_count": 1230,
"total_reaction_count": 1999
},
"reply_count": 0,
"reactions": {
"thumbs_up": 1,
"thumbs_down": 0,
"heart": 0,
"laugh": 0,
"clap": 0,
"sad": 0,
"total": 1
}
}
],
"has_next_page": true,
"next_cursor": "eyJ0aW1lc3RhbXBNaWNyb3MiOjE3ODY2NTY4NjMxMTY1OTIsImlkIjoiMDVhZjgzOTMtZjYzOS00ZTdmLWE0ZjEtNzI5M2YyMDVkOGZlIiwiaW5zdGFudCI6IjIwMjYtMDgtMTNUMjE6MzQ6MjMuMTE2NTkyWiJ9"
}
}curl "https://api.crawlora.net/api/v1/yahoo-news/comments/replies?content_id=<content_id>&comment_id=<comment_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"