Prices and Stores
Description: Shows product pricing information across different retailers and stores.
API Response Structure:
{
"product": {
"name": "Product Name",
"model": "Model Number",
"category": "Product Category",
"image": "https://example.com/product.jpg"
},
"prices": {
"summary": {
"lowest": "$99.99",
"highest": "$149.99",
"average": "$124.99",
"recommended": "Wait for price drop"
},
"retailers": [
{
"store": {
"name": "Store Name",
"logo": "https://example.com/store-logo.png",
"rating": 4.5,
"verified": true
},
"offer": {
"price": "$99.99",
"condition": "New",
"availability": "In Stock",
"shipping": {
"cost": "Free",
"estimate": "2-3 days"
},
"warranty": "1 year"
},
"promotions": [
{
"type": "Discount",
"description": "10% off with code",
"expires": "2023-08-31"
}
]
}
]
},
"priceHistory": {
"trend": "Decreasing",
"lowestEver": "$89.99",
"highestEver": "$159.99",
"chart": [
{
"date": "2023-08-01",
"price": "$129.99"
}
]
},
"type": "pricesAndStores"
}
Fields:
-
product
(object): Product information -
prices
(object): Pricing details-
summary
(object): Price overview -
retailers
(array): Store listings
-
-
priceHistory
(object): Historical prices -
type
(string): Always "pricesAndStores"