Shopping Results
Description: Shows product listings from various merchants with pricing and availability information.
API Response Structure:
{
"items": [
{
"link": {
"url": "https://example.com/product",
"title": "Product Title
},
"image": "https://example.com/product.jpg",
"inStore": true,
"price": "$99.99",
"brand": "Brand Name",
"detail": "Product specifications",
"reviews": {
"rating": 4.5,
"count": "1,234"
}
}
],
"type": "shoppingResults"
}
Fields:
-
items
(array): Product listings-
link
(object): Product URL information -
image
(string): Product image URL -
inStore
(boolean): Store availability -
price
(string): Product price -
brand
(string): Product brand -
detail
(string): Product details -
reviews
(object): Product reviews
-
-
type
(string): Always "shoppingResults"