Endpoint Playground
Test Crawlora's Yahoo News Category 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/category?category=us" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| category | string | Yes | us | Yahoo News section |
{
"code": 200,
"msg": "OK",
"data": {
"category": "politics",
"items": [
{
"id": "1bfd4c19-ae78-369c-a4cb-8489000ca9d7",
"title": "Hegseth criticized for locking Democrats out of closed-door defense budget talks",
"url": "https://www.yahoo.com/news/politics/articles/hegseth-criticized-locking-democrats-closed-150610567.html",
"summary": "Republican lawmakers express concern after US defense secretary repeatedly excluded Democrats from briefings",
"source": "The Guardian",
"source_url": "https://www.theguardian.com/international",
"authors": [
"Joseph Gedeon in Washington"
],
"category": "Politics",
"comment_count": 0,
"thumbnail_url": "https://media.zenfs.com/en/the_guardian_765/b0019faf1c513b027cd3fd20004640f3.jpg"
}
]
}
}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 Yahoo News section's story stream: title, destination URL, summary, source, publish time, comment count, and thumbnail images for each story. Sourced from Yahoo News's own server-rendered section pages.
{
"code": 200,
"msg": "OK",
"data": {
"category": "politics",
"items": [
{
"id": "1bfd4c19-ae78-369c-a4cb-8489000ca9d7",
"title": "Hegseth criticized for locking Democrats out of closed-door defense budget talks",
"url": "https://www.yahoo.com/news/politics/articles/hegseth-criticized-locking-democrats-closed-150610567.html",
"summary": "Republican lawmakers express concern after US defense secretary repeatedly excluded Democrats from briefings",
"source": "The Guardian",
"source_url": "https://www.theguardian.com/international",
"authors": [
"Joseph Gedeon in Washington"
],
"category": "Politics",
"comment_count": 0,
"thumbnail_url": "https://media.zenfs.com/en/the_guardian_765/b0019faf1c513b027cd3fd20004640f3.jpg"
}
]
}
}curl "https://api.crawlora.net/api/v1/yahoo-news/category?category=<category>" \
-H "x-api-key: $CRAWLORA_API_KEY"