GET /products/category 1 credit

Amazon Products by Category API

Browse a category grid by browse-node id or slug. Same result shape as Product Search, so the two are drop-in interchangeable in your pipeline.

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
category_id
required
string Browse node id or slug.
page integer 1 1-based page number.
sort string Upstream sort key, e.g. price_asc.
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/category?category_id=172282&marketplace=US&zip=10001" \
  -H "x-api-key: YOUR_API_KEY"

Response

200 OK application/json
{
  "page": 1,
  "count": 24,
  "results": [
    {
      "url": "https://www.amazon.com/dp/B0DCH8VDXF",
      "asin": "B0DCH8VDXF",
      "badge": null,
      "image": "https://images-na.ssl-images-amazon.com/images/I/513OSdW4elL.jpg",
      "price": {
        "amount": 19.0,
        "display": "$19.00",
        "currency": "USD",
        "list_price": null
      },
      "prime": true,
      "title": "Apple EarPods Headphones with USB-C Plug",
      "rating": 4.6,
      "delivery": "FREE delivery Mon, Aug 10",
      "position": 1,
      "sponsored": false,
      "reviews_count": 16203,
      "bought_past_month": "50K+ bought in past month"
    }
  ],
  "category_id": "172282",
  "marketplace": "US",
  "has_next_page": true,
  "total_results": 1200
}

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

Related endpoints