Endpoint Playground
Test Crawlora's Yahoo Shopping Store 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/store?store=<store>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| store | string | Yes | Retailer slug from GET /yahoo-shopping/stores |
{
"code": 200,
"msg": "OK",
"data": {
"store": "target",
"name": "Target",
"offers": [
{
"title": "purely elizabeth. Ancient Grain Flakes Cereal -13oz",
"url": "https://www.target.com/p/purely-elizabeth-ancient-grain-flakes-granola-13oz/-/A-94967445",
"image_url": "https://s.yimg.com/example/cereal.jpg",
"brand": "Target",
"currency": "USD",
"price": 7.49,
"sale_price": 5.99
}
]
}
}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 retailer's current deals on Yahoo Shopping: product title, direct retailer product URL, image, brand, currency, price, and sale price for each offer. Sourced from the retailer's shopping.yahoo.com store page's own structured product data -- not a keyword search, a fixed set of currently-featured deals for that retailer. Use GET /yahoo-shopping/stores to find a retailer's slug.
{
"code": 200,
"msg": "OK",
"data": {
"store": "target",
"name": "Target",
"offers": [
{
"title": "purely elizabeth. Ancient Grain Flakes Cereal -13oz",
"url": "https://www.target.com/p/purely-elizabeth-ancient-grain-flakes-granola-13oz/-/A-94967445",
"image_url": "https://s.yimg.com/example/cereal.jpg",
"brand": "Target",
"currency": "USD",
"price": 7.49,
"sale_price": 5.99
}
]
}
}curl "https://api.crawlora.net/api/v1/yahoo-shopping/store?store=<store>" \
-H "x-api-key: $CRAWLORA_API_KEY"