Endpoint Playground
Test Crawlora's Yahoo Shopping 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-shopping/article?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| url | string | Yes | Canonical shopping.yahoo.com article URL |
{
"code": 200,
"msg": "OK",
"data": {
"url": "https://shopping.yahoo.com/style/clothing/article/stylists-say-these-are-the-4-must-have-denim-trends-for-fall-175919542.html",
"title": "Stylists say these are the 4 must-have denim trends for fall",
"description": "Hint: Skinny jeans are still out — but the newest go-to might surprise you.",
"author": "Jessica Teich",
"published_at": "2026-08-06T17:59:19Z",
"updated_at": "2026-08-06T17:59:19Z",
"section": "Clothing",
"image_url": "https://s.yimg.com/lo/mysterio/api/example/denim-hero.jpg",
"keywords": [
"Derek Warburton",
"Katelyn Joseph",
"denim"
],
"provider": "Yahoo Life",
"paragraphs": [
"Every year when fall creeps back in, I slip into mourning over two equally major things..."
]
}
}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 Shopping article's full content: title, description, author, publish/update time, section, image, keywords, original publisher, and body paragraphs. Accepts a canonical shopping.yahoo.com article URL, such as one returned by the home or category story streams.
{
"code": 200,
"msg": "OK",
"data": {
"url": "https://shopping.yahoo.com/style/clothing/article/stylists-say-these-are-the-4-must-have-denim-trends-for-fall-175919542.html",
"title": "Stylists say these are the 4 must-have denim trends for fall",
"description": "Hint: Skinny jeans are still out — but the newest go-to might surprise you.",
"author": "Jessica Teich",
"published_at": "2026-08-06T17:59:19Z",
"updated_at": "2026-08-06T17:59:19Z",
"section": "Clothing",
"image_url": "https://s.yimg.com/lo/mysterio/api/example/denim-hero.jpg",
"keywords": [
"Derek Warburton",
"Katelyn Joseph",
"denim"
],
"provider": "Yahoo Life",
"paragraphs": [
"Every year when fall creeps back in, I slip into mourning over two equally major things..."
]
}
}curl "https://api.crawlora.net/api/v1/yahoo-shopping/article?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"