{
"status": "success",
"data": {
"name": "amazon_product",
"description": "Extract detailed product information from Amazon",
"category": "ecommerce",
"domain": "amazon.com",
"supported_countries": ["US", "UK", "DE", "FR", "IT", "ES", "CA", "JP", "AU"],
"rate_limit": 100,
"input_schema": {
"asin": {
"type": "string",
"description": "Amazon Standard Identification Number (10 alphanumeric characters)",
"required": true,
"pattern": "^[A-Z0-9]{10}$",
"example": "B08N5WRWNW"
},
"country": {
"type": "string",
"description": "Target country code (e.g., US, UK, DE)",
"required": false,
"default": "US",
"enum": ["US", "UK", "DE", "FR", "IT", "ES", "CA", "JP", "AU"]
},
"zipcode": {
"type": "string",
"description": "ZIP code for pricing and availability (US only)",
"required": false,
"example": "90210"
}
},
"output_schema": {
"asin": {
"type": "string",
"description": "Product ASIN"
},
"title": {
"type": "string",
"description": "Product title"
},
"price": {
"type": "object",
"description": "Pricing information",
"properties": {
"current": {
"type": "number",
"description": "Current price"
},
"original": {
"type": "number",
"description": "Original price (before discount)"
},
"currency": {
"type": "string",
"description": "Currency code (USD, EUR, etc.)"
}
}
},
"rating": {
"type": "number",
"description": "Average customer rating (0-5)"
},
"reviews_count": {
"type": "integer",
"description": "Total number of reviews"
},
"availability": {
"type": "string",
"description": "Stock availability status"
},
"images": {
"type": "array",
"description": "Product image URLs"
}
},
"features": ["pricing", "reviews", "availability", "images", "seller_info"],
"version": "2.1.0",
"last_updated": "2026-01-05T10:30:00Z"
}
}