# 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. Currently unreliable for the US marketplace: amazon.com withholds on-page reviews from the upstream provider on most requests, so a rated product usually returns a refunded 404 NOT_FOUND with an explanatory message instead of a silent empty list; retrying may succeed. Non-US marketplaces (for example CA) return review rows consistently, and the aggregate rating plus ratings count for any marketplace remain available via /amazon/product. Powered by DataForSEO. 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. Note: the US marketplace is currently unreliable for review rows (amazon.com withholds on-page reviews from the upstream provider on most requests; such calls return a refunded 404 and retrying may succeed), so prefer a non-US marketplace such as CA when you need review rows dependably. EU marketplaces are best-effort; the upstream is slower there and occasional timeouts are refunded. (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=B0DCH8VDXF" \ -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