Endpoint Playground
Test Crawlora's Yahoo Life 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-life/article?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| url | string | Yes | Canonical www.yahoo.com/lifestyle article URL |
{
"code": 200,
"msg": "OK",
"data": {
"url": "https://www.yahoo.com/lifestyle/article/water-bottles-bag-charms-and-analog-everything-100-back-to-school-trends-kids-actually-care-about-in-2026-133000932.html",
"title": "Water bottles, bag charms and analog everything: 100 back-to-school trends kids actually care about in 2026",
"description": "Going back to school used to be simple: buy the stuff on the list.",
"author": "Erin Donnelly",
"published_at": "2026-08-11T13:30:00Z",
"updated_at": "2026-08-11T13:30:00Z",
"section": "Yahoo Lifestyle",
"image_url": "https://s.yimg.com/lo/mysterio/api/example/bts-hub-header.png",
"keywords": [
"college students",
"school supplies",
"water bottle"
],
"provider": "Yahoo Life",
"paragraphs": [
"Tiny humans, huge shopping list. The littlest schoolers are messy, filled to the brim with emotions."
]
}
}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 Life article's full content: title, description, author, publish/update time, section, image, keywords, original publisher, and body paragraphs. Accepts a canonical www.yahoo.com/lifestyle article URL, such as one returned by the home story stream.
{
"code": 200,
"msg": "OK",
"data": {
"url": "https://www.yahoo.com/lifestyle/article/water-bottles-bag-charms-and-analog-everything-100-back-to-school-trends-kids-actually-care-about-in-2026-133000932.html",
"title": "Water bottles, bag charms and analog everything: 100 back-to-school trends kids actually care about in 2026",
"description": "Going back to school used to be simple: buy the stuff on the list.",
"author": "Erin Donnelly",
"published_at": "2026-08-11T13:30:00Z",
"updated_at": "2026-08-11T13:30:00Z",
"section": "Yahoo Lifestyle",
"image_url": "https://s.yimg.com/lo/mysterio/api/example/bts-hub-header.png",
"keywords": [
"college students",
"school supplies",
"water bottle"
],
"provider": "Yahoo Life",
"paragraphs": [
"Tiny humans, huge shopping list. The littlest schoolers are messy, filled to the brim with emotions."
]
}
}curl "https://api.crawlora.net/api/v1/yahoo-life/article?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"