GET /products/details 1 credit

Amazon Product Details API

The full product record for a single ASIN: title, brand, price and list price, rating, availability, merchant, feature bullets, the complete image gallery and parent-variation linkage.

Try it

You are not signed in, so this runs against sample data and costs nothing. Create a free account to run it against your own key.
Returns sample data — no account needed.
Send a request to see the response.

Query parameters

NameTypeDefaultDescription
asin
required
string Amazon Standard Identification Number.
marketplace string US Two-letter marketplace code (US, UK, DE, FR, IT, ES, CA, JP, IN, AU, …).
zip string Delivery postcode. Without one, many listings report “cannot be shipped to your location” and come back with no price or images. Always send it for price-accurate data.

Request

curl -sS "https://amazoncrawler.com/v1/products/details?asin=B07CMS5Q6P&marketplace=US&zip=10001" \
  -H "x-api-key: YOUR_API_KEY"

Response

200 OK application/json
{
  "url": "https://www.amazon.com/dp/B07CMS5Q6P",
  "asin": "B07CMS5Q6P",
  "brand": "Logitech G",
  "price": {
    "amount": 29.99,
    "display": "$29.99",
    "currency": "USD",
    "list_price": 49.99
  },
  "title": "Logitech G305 Lightspeed Wireless Gaming Mouse - Black",
  "images": [
    {
      "url": "https://m.media-amazon.com/images/I/51sg9BLSMTL.jpg",
      "width": null,
      "height": null,
      "thumbnail": "https://m.media-amazon.com/images/I/51sg9BLSMTL._AC_SF700,700_.jpg"
    }
  ],
  "rating": 4.6,
  "in_stock": true,
  "merchant": "Sold by Amazon Resale and Fulfilled by Amazon.",
  "variations": {
    "parent_asin": "B0H5WRQK7Q"
  },
  "availability": "In Stock",
  "product_facts": {},
  "reviews_count": 39364,
  "feature_bullets": [
    "The next-generation optical HERO sensor delivers incredible performance and up to 10x the power efficiency over previous generations, with 400 IPS precision and up to 12,000 DPI sensitivity",
    "Ultra-fast LIGHTSPEED wireless technology gives you a lag-free gaming experience with 1 ms report rate"
  ]
}

Errors

Beyond the shared error codes, this endpoint returns 422 when a parameter fails validation — the detail array names the field.

422 Unprocessable Entity
{
  "detail": [
    {
      "loc": ["query", "asin"],
      "msg": "Field required",
      "type": "missing",
      "input": null
    }
  ]
}

Related endpoints