Endpoint Playground
Test Crawlora's Yahoo Shopping Home 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/home" \
-H "x-api-key: $CRAWLORA_API_KEY"No request parameters
{
"code": 200,
"msg": "OK",
"data": {
"items": [
{
"id": "175919542",
"title": "Stylists say these are the 4 must-have denim trends for fall",
"url": "https://shopping.yahoo.com/style/clothing/article/stylists-say-these-are-the-4-must-have-denim-trends-for-fall-175919542.html",
"category": "style",
"thumbnail_url": "https://s.yimg.com/lo/mysterio/api/example/denim.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 Yahoo Shopping's homepage editorial story feed: title, destination URL, category, and thumbnail image for each story. Sourced from Yahoo Shopping's own server-rendered homepage. This is Yahoo's shopping buying-guide/deals content site, not a product-search API -- shopping.yahoo.com no longer exposes a searchable product catalog.
{
"code": 200,
"msg": "OK",
"data": {
"items": [
{
"id": "175919542",
"title": "Stylists say these are the 4 must-have denim trends for fall",
"url": "https://shopping.yahoo.com/style/clothing/article/stylists-say-these-are-the-4-must-have-denim-trends-for-fall-175919542.html",
"category": "style",
"thumbnail_url": "https://s.yimg.com/lo/mysterio/api/example/denim.jpg"
}
]
}
}curl "https://api.crawlora.net/api/v1/yahoo-shopping/home" \
-H "x-api-key: $CRAWLORA_API_KEY"