GET /products/offers 1 credit

Amazon Product Offers API

Every offer on a listing — the Buy Box plus all competing sellers. Returns price, condition, shipping promise, seller identity and FBA/Prime flags. This is the endpoint to poll for Buy Box tracking and repricing.

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/offers?asin=B07CMS5Q6P&marketplace=US&zip=10001" \
  -H "x-api-key: YOUR_API_KEY"

Response

200 OK application/json
{
  "url": "https://www.amazon.com/gp/offer-listing/B07CMS5Q6P",
  "asin": "B07CMS5Q6P",
  "count": 4,
  "offers": [
    {
      "price": {
        "amount": 29.99,
        "display": "$29.99",
        "currency": "USD"
      },
      "is_fba": true,
      "seller": {
        "id": null,
        "name": "Amazon.com"
      },
      "is_prime": false,
      "position": 1,
      "shipping": "FREE delivery Monday, August 10 on orders shipped by Amazon over $35",
      "condition": "New",
      "seller_rating": null
    },
    {
      "price": {
        "amount": 25.82,
        "display": "$25.82",
        "currency": "USD"
      },
      "is_fba": true,
      "seller": {
        "id": null,
        "name": "Amazon Resale"
      },
      "is_prime": false,
      "position": 2,
      "shipping": "FREE delivery Tuesday, August 11 on orders shipped by Amazon over $35",
      "condition": "Used - Acceptable",
      "seller_rating": null
    }
  ]
}

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