Endpoint Playground
Test Crawlora's Yahoo News Article 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/article?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| url | string | Yes | Canonical www.yahoo.com/news article URL |
{
"code": 200,
"msg": "OK",
"data": {
"id": "1bfd4c19-ae78-369c-a4cb-8489000ca9d7",
"url": "https://www.yahoo.com/news/politics/articles/hegseth-criticized-locking-democrats-closed-150610567.html",
"title": "Hegseth criticized for locking Democrats out of closed-door defense budget talks",
"description": "Republican lawmakers express concern after US defense secretary repeatedly excluded Democrats from briefings",
"author": "Joseph Gedeon in Washington",
"published_at": "2026-08-13T15:06:10Z",
"updated_at": "2026-08-13T15:06:10Z",
"category": "Politics",
"image_url": "https://s.yimg.com/lo/mysterio/api/.../resizefill_w1200.../https%3A%2F%2Fmedia.zenfs.com%2F...",
"keywords": [
"Pete Hegseth",
"the Pentagon",
"Democrats",
"Capitol Hill"
],
"provider": "The Guardian",
"provider_url": "https://www.theguardian.com/international",
"paragraphs": [
"Republican senators have criticized the Pentagon for locking Democrats out of classified briefings on defense spending, warning that Pete Hegseth's approach could jeopardize passage of Donald Trump's record $1.5tn military budget increase.",
"The US defense secretary has made at least two trips to Capitol Hill in recent weeks to pitch the budget, but has repeatedly excluded Democrats from the closed-door sessions, according to lawmakers from both parties."
]
}
}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 single Yahoo News article's full content: headline, description, author, publish/update time, section, image, keywords, original publisher, and body paragraphs. Accepts a canonical yahoo.com/news article URL, such as one returned by the home or category story streams.
{
"code": 200,
"msg": "OK",
"data": {
"id": "1bfd4c19-ae78-369c-a4cb-8489000ca9d7",
"url": "https://www.yahoo.com/news/politics/articles/hegseth-criticized-locking-democrats-closed-150610567.html",
"title": "Hegseth criticized for locking Democrats out of closed-door defense budget talks",
"description": "Republican lawmakers express concern after US defense secretary repeatedly excluded Democrats from briefings",
"author": "Joseph Gedeon in Washington",
"published_at": "2026-08-13T15:06:10Z",
"updated_at": "2026-08-13T15:06:10Z",
"category": "Politics",
"image_url": "https://s.yimg.com/lo/mysterio/api/.../resizefill_w1200.../https%3A%2F%2Fmedia.zenfs.com%2F...",
"keywords": [
"Pete Hegseth",
"the Pentagon",
"Democrats",
"Capitol Hill"
],
"provider": "The Guardian",
"provider_url": "https://www.theguardian.com/international",
"paragraphs": [
"Republican senators have criticized the Pentagon for locking Democrats out of classified briefings on defense spending, warning that Pete Hegseth's approach could jeopardize passage of Donald Trump's record $1.5tn military budget increase.",
"The US defense secretary has made at least two trips to Capitol Hill in recent weeks to pitch the budget, but has repeatedly excluded Democrats from the closed-door sessions, according to lawmakers from both parties."
]
}
}curl "https://api.crawlora.net/api/v1/yahoo-news/article?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"