Products
Description: Shows detailed product information and comparisons for shopping-related queries.
API Response Structure:
{
"products": [
{
"basic": {
"name": "Product Name",
"brand": "Brand Name",
"model": "Model Number",
"category": "Category Name",
"sku": "SKU123456"
},
"details": {
"description": "Product description",
"features": [
{
"name": "Feature Name",
"value": "Feature Value",
"highlight": true
}
],
"specifications": {
"dimensions": "10x20x30 cm",
"weight": "1.5 kg",
"color": "Black
}
},
"pricing": {
"current": "$99.99",
"original": "$129.99",
"discount": "23%",
"priceHistory": [
{
"date": "2023-08-01",
"price": "$119.99"
}
]
},
"availability": {
"status": "In Stock",
"quantity": 50,
"shipping": {
"free": true,
"estimated": "2-3 days",
"methods": ["Standard", "Express"]
}
},
"ratings": {
"average": 4.5,
"total": 1234,
"distribution": {
"5": 800,
"4": 300,
"3": 100,
"2": 25,
"1": 9
}
}
}
],
"comparisons": {
"similarProducts": [
{
"name": "Similar Product",
"priceDifference": "+$10",
"keyDifferences": ["Feature A", "Feature B"]
}
]
},
"type": "products"
}
Fields:
-
products
(array): Product listings-
basic
(object): Core information -
details
(object): Product specs -
pricing
(object): Price information -
availability
(object): Stock status -
ratings
(object): User reviews
-
-
comparisons
(object): Product comparisons -
type
(string): Always "products"