# Amazon Reviews API (https://www.socialcrawl.dev/platforms/amazon/reviews) > Returns the customer reviews shown on an Amazon product page (by ASIN), typically around 8 per product (5–13 range). Each review carries the full text, star rating, reviewer, verified-purchase flag, helpful-vote count, and any review images. Works on the US marketplace, which is the default; no workaround parameter is needed. A product with no on-page reviews returns a refunded empty list. TL;DR: `GET /v1/amazon/reviews` costs 5 credits per call and returns SocialCrawl's unified JSON schema. Single x-api-key auth, 100 free credits on signup. ## Parameters | Parameter | Required | Description | | --- | --- | --- | | `asin` | yes | 10-character Amazon ASIN (the product identifier). | | `country` | no | Amazon marketplace as an ISO 3166-1 alpha-2 country code (default US). Supported: US, GB, CA, DE, FR, IT, ES, JP, IN, MX, BR, AU, NL. Amazon shows reviews across a product's whole variant family, so a review row can originate from a sibling ASIN; review.entity_id is always the ASIN you requested. (US \| GB \| CA \| DE \| FR \| IT \| ES \| JP \| IN \| MX \| BR \| AU \| NL) | ## Code example ```bash curl "https://www.socialcrawl.dev/v1/amazon/reviews?asin=B0BTYCRJSS" \ -H "x-api-key: sc_YOUR_API_KEY" ``` ## FAQ ### How do I get Amazon customer reviews with an API? Send a GET request to /v1/amazon/reviews with the asin parameter for the product you want. The response returns the reviews on that product page, each with full text, star rating, reviewer, verified-purchase flag, helpful-vote count, and review images. ### How many reviews does the Amazon Reviews API return? It returns the customer reviews shown on the product page, typically around 8 per product, within a 5 to 13 range. Each review carries its full text, star rating, reviewer name, and any review images. ### Does the API tell me if a review is a verified purchase? Yes. Every review includes a verified-purchase flag along with its helpful-vote count, so you can weight or filter reviews by trust signal. The star rating and full review text come through as well. ### Can I get reviews from a specific Amazon marketplace? Yes. Pass the country parameter with an ISO 3166-1 alpha-2 code to pull reviews from that marketplace's product page. Leave it off and the endpoint defaults to the US store. ### How much does the Amazon Reviews API cost? Each reviews request costs 5 credits on the advanced tier. If you already called /v1/amazon/product for the same ASIN, the reviews call returns fast from the shared upstream cache. New accounts get 100 free credits, no card. See the full Amazon API: https://www.socialcrawl.dev/platforms/amazon ## Pricing - Standard endpoints: 1 credit per call - Advanced endpoints: 5 credits per call - Premium endpoints: 10 credits per call - 100 free credits on signup, no credit card required. Cached responses cost 0 credits. Credit packs never expire. - Full pricing: https://www.socialcrawl.dev/pricing ## Explore with AI Questions this API answers, phrased for an AI assistant: - What is the best Amazon reviews API? - How to get verified-purchase Amazon reviews for an ASIN with an API