Endpoint Playground
Test Crawlora's Yahoo News Related Articles 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/related?content_id=<content_id>" \
-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) | |
| cursor | string | No | Pagination cursor from a previous response's next_cursor | |
| count | integer | No | Number of related articles to return, default 10, clamped to 1..50 |
{
"code": 200,
"msg": "OK",
"data": {
"content_id": "6463c2b7-dfa6-3313-9e0d-a0b1cb5e6506",
"items": [
{
"id": "71fc77ef-f02d-3e6c-9114-20d641f0381a",
"title": "Trump Humiliated as U.N. Speech Bombs With Bored Audience",
"url": "https://www.yahoo.com/news/politics/articles/trump-humiliated-u-n-speech-172143586.html",
"summary": "It was meant to be one of the most important foreign policy speeches of his presidency...",
"published_at": "2026-09-22T17:21:43Z",
"source": "The Daily Beast",
"source_url": "http://www.thedailybeast.com",
"category": "Politics",
"comment_count": 2740,
"thumbnail_url": "https://media.zenfs.com/en/thedailybeast.com/3e2809417604599d922d5f497c8f105d.jpg",
"images": [
{
"url": "https://s.yimg.com/lo/mysterio/api/938d190fbcf674d41f8459f113f8d74dfac0c600806b468a8609a77b49da3c06/lightyear_networkapi/smartcrop_w296_h296_faces%3Bquality_85%3Bformat_webp/https%3A%2F%2Fmedia.zenfs.com%2Fen%2Fthedailybeast.com%2F3e2809417604599d922d5f497c8f105d.jpg",
"width": 296,
"height": 296
}
]
}
],
"has_next_page": true,
"next_cursor": "eyJyZWdpb24iOiJhc2lhLXNvdXRoZWFzdDEiLCJzZXNzaW9uX2lkIjoiYjVjM2YxMjdmYWE5NDYzYWFjMTA5ZDliMTU2YmIxN2MiLCJwYWdlX2luZGV4IjoxMCwibmFtZXNwYWNlIjoicmVjaXJjIn0="
}
}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 articles Yahoo recommends alongside a given article -- the "you may also like" strip at the bottom of an article page -- with cursor-based pagination. Sourced from Yahoo's own recommendation gateway.
{
"code": 200,
"msg": "OK",
"data": {
"content_id": "6463c2b7-dfa6-3313-9e0d-a0b1cb5e6506",
"items": [
{
"id": "71fc77ef-f02d-3e6c-9114-20d641f0381a",
"title": "Trump Humiliated as U.N. Speech Bombs With Bored Audience",
"url": "https://www.yahoo.com/news/politics/articles/trump-humiliated-u-n-speech-172143586.html",
"summary": "It was meant to be one of the most important foreign policy speeches of his presidency...",
"published_at": "2026-09-22T17:21:43Z",
"source": "The Daily Beast",
"source_url": "http://www.thedailybeast.com",
"category": "Politics",
"comment_count": 2740,
"thumbnail_url": "https://media.zenfs.com/en/thedailybeast.com/3e2809417604599d922d5f497c8f105d.jpg",
"images": [
{
"url": "https://s.yimg.com/lo/mysterio/api/938d190fbcf674d41f8459f113f8d74dfac0c600806b468a8609a77b49da3c06/lightyear_networkapi/smartcrop_w296_h296_faces%3Bquality_85%3Bformat_webp/https%3A%2F%2Fmedia.zenfs.com%2Fen%2Fthedailybeast.com%2F3e2809417604599d922d5f497c8f105d.jpg",
"width": 296,
"height": 296
}
]
}
],
"has_next_page": true,
"next_cursor": "eyJyZWdpb24iOiJhc2lhLXNvdXRoZWFzdDEiLCJzZXNzaW9uX2lkIjoiYjVjM2YxMjdmYWE5NDYzYWFjMTA5ZDliMTU2YmIxN2MiLCJwYWdlX2luZGV4IjoxMCwibmFtZXNwYWNlIjoicmVjaXJjIn0="
}
}curl "https://api.crawlora.net/api/v1/yahoo-news/related?content_id=<content_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"