Endpoint Playground
Test Crawlora's Yahoo Health 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-health/article?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| url | string | Yes | Canonical health.yahoo.com article URL |
{
"code": 200,
"msg": "OK",
"data": {
"url": "https://health.yahoo.com/wellness/article/signs-you-need-a-firmer-mattress-130000290.html",
"title": "Sleep experts say these 6 signs mean you need a firmer mattress",
"description": "Your too-soft mattress might be why you're waking up sore, hot or stiff — here's how to tell.",
"author": "Holly Pevzner",
"published_at": "2026-08-08T13:00:00Z",
"updated_at": "2026-08-08T13:00:00Z",
"section": "Wellness",
"image_url": "https://s.yimg.com/lo/mysterio/api/example/firm-mattress-hero.jpg",
"keywords": [
"firm mattress",
"soft mattress",
"Ibrahim"
],
"provider": "Yahoo Life",
"paragraphs": [
"Nearly 3 in 10 people who wake up in pain blame their mattress..."
]
}
}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 Health article's full content: title, description, author, publish/update time, section, image, keywords, original publisher, and body paragraphs. Accepts a canonical health.yahoo.com article URL, such as one returned by the home or category story streams.
{
"code": 200,
"msg": "OK",
"data": {
"url": "https://health.yahoo.com/wellness/article/signs-you-need-a-firmer-mattress-130000290.html",
"title": "Sleep experts say these 6 signs mean you need a firmer mattress",
"description": "Your too-soft mattress might be why you're waking up sore, hot or stiff — here's how to tell.",
"author": "Holly Pevzner",
"published_at": "2026-08-08T13:00:00Z",
"updated_at": "2026-08-08T13:00:00Z",
"section": "Wellness",
"image_url": "https://s.yimg.com/lo/mysterio/api/example/firm-mattress-hero.jpg",
"keywords": [
"firm mattress",
"soft mattress",
"Ibrahim"
],
"provider": "Yahoo Life",
"paragraphs": [
"Nearly 3 in 10 people who wake up in pain blame their mattress..."
]
}
}curl "https://api.crawlora.net/api/v1/yahoo-health/article?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"