Endpoint Playground
Test Crawlora's Yahoo News 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/yahoo-news/comments?content_id=<content_id>&sort=top" \
-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) | |
| sort | string | No | top | Sort order, defaults to top |
| cursor | string | No | Pagination cursor from a previous response's next_cursor | |
| count | integer | No | Number of comments to return, default 10, clamped to 1..50 |
{
"code": 200,
"msg": "OK",
"data": {
"content_id": "70253ef0-7509-31ec-aabf-d8e369db3f73",
"sort": "top",
"comments_count": 365,
"items": [
{
"id": "eb4886ed-3ccc-4709-878f-70e239ca1e9c",
"body": "Well let's see, that's \"interesting\".",
"created_at": "2026-08-13T16:24:56.096Z",
"pinned": false,
"author": {
"nickname": "Chuck",
"handle": "chuck23117",
"avatar_url": "https://s.yimg.com/ag/images/default_user_profile_pic_64sq.jpg",
"has_default_avatar": true,
"total_comment_count": 3931,
"total_reaction_count": 14055
},
"reply_count": 11,
"reactions": {
"thumbs_up": 135,
"thumbs_down": 8,
"heart": 13,
"laugh": 1,
"clap": 4,
"sad": 0,
"total": 161
}
}
],
"has_next_page": true,
"next_cursor": "eyJ0aW1lc3RhbXBNaWNyb3MiOjE3ODY2Mzg3NTUzODk0MjQsImlkIjoiMGI1YjhlYzAtNzk2Ny00OGI0LTg2ZDktZmRlYWVhYmQ4MTMyIiwiaW5zdGFudCI6IjIwMjYtMDgtMTNUMTY6MzI6MzUuMzg5NDI0WiJ9"
}
}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 an article's top-level comments: author, body, reaction counts, reply count, 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": "70253ef0-7509-31ec-aabf-d8e369db3f73",
"sort": "top",
"comments_count": 365,
"items": [
{
"id": "eb4886ed-3ccc-4709-878f-70e239ca1e9c",
"body": "Well let's see, that's \"interesting\".",
"created_at": "2026-08-13T16:24:56.096Z",
"pinned": false,
"author": {
"nickname": "Chuck",
"handle": "chuck23117",
"avatar_url": "https://s.yimg.com/ag/images/default_user_profile_pic_64sq.jpg",
"has_default_avatar": true,
"total_comment_count": 3931,
"total_reaction_count": 14055
},
"reply_count": 11,
"reactions": {
"thumbs_up": 135,
"thumbs_down": 8,
"heart": 13,
"laugh": 1,
"clap": 4,
"sad": 0,
"total": 161
}
}
],
"has_next_page": true,
"next_cursor": "eyJ0aW1lc3RhbXBNaWNyb3MiOjE3ODY2Mzg3NTUzODk0MjQsImlkIjoiMGI1YjhlYzAtNzk2Ny00OGI0LTg2ZDktZmRlYWVhYmQ4MTMyIiwiaW5zdGFudCI6IjIwMjYtMDgtMTNUMTY6MzI6MzUuMzg5NDI0WiJ9"
}
}curl "https://api.crawlora.net/api/v1/yahoo-news/comments?content_id=<content_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"