Endpoint Playground
Test Crawlora's Yahoo Shopping Shopping List 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/shopping-list?list=<list>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| list | string | Yes | List slug from GET /yahoo-shopping/shopping-lists |
{
"code": 200,
"msg": "OK",
"data": {
"list": "cooling-essentials",
"title": "Cooling Essentials",
"items": [
{
"title": "Dreo TurboPoly Fan 765S",
"url": "https://www.dreo.com/products/turbopoly-fan-765s",
"image_url": "https://s.yimg.com/example/fan.jpg",
"seller": "Dreo",
"currency": "USD",
"price": 160,
"sale_price": 160
}
]
}
}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 one curated Yahoo Shopping list's items: product title, direct destination URL, image, seller, currency, price, and sale price for each item. Sourced from the list page's own product cards. Use GET /yahoo-shopping/shopping-lists to find a list's slug.
{
"code": 200,
"msg": "OK",
"data": {
"list": "cooling-essentials",
"title": "Cooling Essentials",
"items": [
{
"title": "Dreo TurboPoly Fan 765S",
"url": "https://www.dreo.com/products/turbopoly-fan-765s",
"image_url": "https://s.yimg.com/example/fan.jpg",
"seller": "Dreo",
"currency": "USD",
"price": 160,
"sale_price": 160
}
]
}
}curl "https://api.crawlora.net/api/v1/yahoo-shopping/shopping-list?list=<list>" \
-H "x-api-key: $CRAWLORA_API_KEY"