GET /products/reviews/details 1 credit

Amazon Product Review Details API

Fetch one specific review in full by its review id, including the untruncated body.

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.
review_id
required
string Review id from /products/reviews.
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/reviews/details?asin=B07CMS5Q6P&review_id=R3H2KBL1KYTDR0&marketplace=US&zip=10001" \
  -H "x-api-key: YOUR_API_KEY"

Response

200 OK application/json
{
  "url": "https://www.amazon.com/gp/customer-reviews/R3H2KBL1KYTDR0",
  "asin": "B07CMS5Q6P",
  "review": {
    "id": "R3H2KBL1KYTDR0",
    "body": "The Logitech G305 Lightspeed is one of the best wireless gaming mice I've used\u2026",
    "date": "June 6, 2026",
    "title": "Excellent Wireless Gaming Mouse with Amazing Battery Life",
    "images": [],
    "rating": 5.0,
    "country": "United States",
    "variant": "Color: Black Style: Classic Pattern Name: Mouse",
    "helpful_votes": 11,
    "verified_purchase": true
  },
  "review_id": "R3H2KBL1KYTDR0"
}

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