Skip to content
Login Sign up

Amazon Product

Amazon Product returns the full detail page for a single ASIN, including pricing, images, categories, variants, and attributes.

GET https://ecom.shifter.io/v1?engine=amazon&api_key=YOUR_API_KEY&type=product
ParameterTypeRequiredDescription
api_keystringyesYour SERP API key (shared with Amazon).
enginestringyesMust be amazon.
typestringyesMust be product.
product_idstringyesThe Amazon product ID (ASIN).
domainstringnoMarketplace domain, default amazon.com.
devicedesktop | mobilenoSimulated device.

Amazon identifies products by ASIN (Amazon Standard Identification Number). You can find it two ways:

  1. In the product URL, after /dp/ (for example, https://www.amazon.com/dp/B08C1W5N87).
  2. In the “Product Information” or “Additional Information” section on the product page.
Terminal window
curl "https://ecom.shifter.io/v1?engine=amazon&api_key=YOUR_API_KEY&type=product&product_id=B08C1W5N87"
{
"search_metadata": {
"engine": "amazon",
"amazon_domain": "amazon.com",
"type": "product",
"product_id": "B08C1W5N87"
},
"product": {
"title": "Fire TV Stick with Alexa Voice Remote",
"product_id": "B08C1W5N87",
"brand": "Amazon",
"price": { "current_price": "$19.99", "currency": "$" },
"rating": { "rating": 4.7, "total_ratings": 141438 },
"keywords": ["fire tv", "streaming device"],
"categories": [
{ "name": "Electronics", "link": "/electronics" },
{ "name": "Streaming Media Players" }
],
"images": [
"https://m.media-amazon.com/images/I/51KKR5uGn6L.jpg"
],
"attributes": [
{ "name": "Connectivity", "value": "Wi-Fi, HDMI" }
]
}
}