GET /sellers/products 1 credit

Amazon Seller Products API

Every listing in a seller's storefront, paginated. Same product shape as search results — ideal for competitor catalogue mapping.

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
seller_id
required
string Amazon merchant token.
page integer 1 1-based page 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/sellers/products?seller_id=AZQLP91T8BP8E&marketplace=US&zip=10001" \
  -H "x-api-key: YOUR_API_KEY"

Response

200 OK application/json
{
  "page": 1,
  "count": 1,
  "results": [
    {
      "url": "https://www.amazon.com/dp/B0F7QFTVWH",
      "asin": "B0F7QFTVWH",
      "badge": null,
      "image": "https://m.media-amazon.com/images/I/41OWaOj+b4L.jpg",
      "price": {
        "amount": 21.99,
        "display": "$21.99",
        "currency": "USD",
        "list_price": null
      },
      "prime": false,
      "title": "Wireless Mouse Foldable Folding Mice for Microsoft Laptop PC Mac Black",
      "rating": 4.4,
      "delivery": "FREE delivery Aug 9 - 10 on $35 of items shipped by Amazon",
      "position": 3,
      "sponsored": false,
      "reviews_count": 27,
      "bought_past_month": null
    }
  ],
  "seller_id": "AZQLP91T8BP8E",
  "marketplace": "US",
  "has_next_page": false,
  "total_results": 1
}

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", "seller_id"],
      "msg": "Field required",
      "type": "missing",
      "input": null
    }
  ]
}

Related endpoints