What is Amazon Product Details?
Scavio's Amazon product endpoint resolves an ASIN or product URL into a fully structured product object. You get the title, brand, bullet list of features, long description, current price plus list price, rating, total review count, image gallery, available variants (size, color), category breadcrumbs, seller name, whether the offer is Prime-eligible, and the current Buy Box winner. We handle locale routing across Amazon.com, Amazon.co.uk, Amazon.de, Amazon.co.jp, and more, returning prices in the correct currency. This is the cleanest path from an ASIN to a complete product intelligence record, and it works for millions of SKUs per day without captcha or IP rotation on the caller's side.
Example Response
{
"asin": "B0E2X4K9PQ",
"marketplace": "amazon.com",
"url": "https://www.amazon.com/dp/B0E2X4K9PQ",
"title": "Sony WH-1000XM6 Wireless Noise Canceling Headphones - Black",
"brand": "Sony",
"price": 389.0,
"list_price": 449.99,
"currency": "USD",
"rating": 4.8,
"review_count": 1042,
"prime": true,
"buy_box_winner": "Amazon.com",
"in_stock": true,
"images": [
"https://serpapi.scavio.dev/amz/xm6-main.jpg",
"https://serpapi.scavio.dev/amz/xm6-side.jpg"
],
"features": [
"Industry leading noise cancellation with V2 processor",
"Up to 32-hour battery life with quick charge",
"Multipoint Bluetooth 5.4 connection"
],
"variants": [
{ "asin": "B0E2X4K9PQ", "color": "Black" },
{ "asin": "B0E2X4L8ZR", "color": "Silver" }
],
"categories": ["Electronics", "Headphones", "Over-Ear"]
}Use Cases
- Competitive price and Buy Box monitoring for sellers
- Catalogue enrichment for affiliate content sites
- MAP violation alerts across marketplaces
- LLM shopping assistants that recommend live products
- Inventory availability tracking for retail arbitrage
Why Amazon Product Details Matters
Amazon Product Advertising API has strict approval requirements and rate limits that exclude most small teams, and direct scraping runs into constant anti-bot walls. Scavio delivers a stable, rate-predictable alternative that returns the Buy Box, variant tree, and image gallery in one shot. This unblocks retailers, affiliate publishers, and AI shopping agents who cannot wait weeks for PA-API approval or who need cross-marketplace coverage.
LangChain Example
Drop amazon product details data into your LangChain agent in a few lines:
from langchain_scavio import ScavioAmazonTool
tool = ScavioAmazonTool(api_key="your_scavio_api_key")
product = tool.invoke({"asin": "B0E2X4K9PQ", "marketplace": "amazon.com"})
discount = 1 - product["price"] / product["list_price"]
print(f"{product['title']}: {product['price']} {product['currency']}")
print(f"Discount: {discount:.0%} | Buy Box: {product['buy_box_winner']}")