Documentation Python quickstart Blog Free tools hello@quanticdata.ioLog in

Amazon reviews API

An Amazon reviews API that takes an ASIN or product URL and returns customer reviews as rows: star rating, title and full text, review date and country, the Verified Purchase and Vine flags, helpful votes, the purchased variant and any review images. Works across Amazon marketplaces with top/recent sorting and star filters, priced per delivered review.

$0.002 per delivered review · $2 free every month · Failed runs never billed

POST /v1/scraper/collectors/amazon_reviews/run
$ curl $QD/amazon_reviews/run \
    -H "Authorization: Bearer $QD_API_KEY" \
    -d '{"product": "B07FZ8S74R", "country": "us", "max_results": 10}'
{ "status": "done", "count": 10,
  "results": [
    {
      "review_id": "…",
      "title": "…",
      "text": "…",
      "rating": … } ],
  "cost": 0.02 }
# 10 reviews × $0.002 · nothing delivered, nothing charged
Amazon reviews API: product and country in, a residential exit in the middle, delivered rows with rank, page and review_id on the right, $0.002 per review.
You send product and country; the run goes out through a residential exit and comes back as reviews with rank, page and review_id — 16 fields on every row — and you are billed $0.002 for each review actually delivered, nothing for a run that delivers none.
$0.002 / review1,000 reviews on the free $2 every month
Semantic inputproduct, country, sort — no URL lists
Up to 100reviews per run, pagination handled for you
No browserread over HTTP/TLS — cheaper and faster than rendering

Try it

Amazon reviews, running now

Change the input and run it against the live collector — nothing to install, no sign-up.

Run it from your own code, on your own inputs

Same collector, same rows — $2 of free API credit every month, no card.

Get my free API key

What an Amazon reviews API does

Reviews are the only part of a product page written by customers, and the flags around them decide what a row is worth: a Verified Purchase five-star and an unverified one are different signals, a Vine review is a third thing, and helpful votes rank the text the crowd found true. All of that arrives as columns, with the purchased variant attached — so "runs small" can be tied to the size that runs small.

One honesty note, on the page itself because it affects what you should expect: Amazon has been walling deep review pagination behind login since 2024. This collector delivers every page Amazon serves publicly and, when the wall appears, falls back to the reviews embedded in the product page and says so in the run notes — typically 10–30 reviews per product land, more when Amazon serves extra pages, and a run never pretends otherwise.

Limits, in plain numbers

Everything that bounds one run of this collector. No hidden throttles.

Max per run

100 reviews

Price

$0.002 / review

Per 1,000

$2.00

Failed runs

Free zero rows, zero charge

Free every month

$2 no card

Rate limit

60 req/min on the free tier

What one review looks like

Every delivered review carries these fields. Nullable means the source did not publish it — the field stays empty instead of being guessed.

FieldTypeWhat it holds
rankinteger1-based position in the requested order.
pageintegerReviews page the row came from.
review_idstring · nullableAmazon review id.
titlestring · nullableReview title.
textstring · nullableFull review text.
ratingnumber · nullableStar rating (1–5).
datestring · nullableReview date (YYYY-MM-DD when parseable).
date_rawstring · nullableThe date line as shown.
countrystring · nullableMarketplace country from the date line.
authorstring · nullableReviewer display name.
verified_purchasebooleanTrue when marked Verified Purchase.
helpful_votesintegerPeople who found the review helpful.
variantstring · nullablePurchased variant (size, colour…) when shown.
vinebooleanTrue for Amazon Vine reviews.
imagesstring[]Review image URLs (empty when none).
urlstring · nullableDirect link to the review.

Inputs

The whole request. Anything you leave out falls back to the default shown in the catalog.

InputTypeRequiredWhat it does
productstringyesASIN (10 characters) or Amazon product URL.
countrystringnoISO 3166-1 alpha-2 code — picks the local site AND the proxy exit (default us).
sortstringnoReview order (default helpful). One of: helpful, recent.
starsstringnoOnly reviews matching this filter. Omit for all. One of: 1, 2, 3, 4, 5, positive, critical.
max_resultsintegernoHow many reviews to deliver at most (1–100). You pay only for delivered reviews.

Pricing

Amazon reviews API pricing

$0.002 per delivered review. A run that delivers nothing costs nothing: blocked pages, challenges and retries are on us, and the $2 monthly allowance covers about 1,000 reviews before you spend anything.

$0.002per delivered review$2 per 1,000 delivered reviews
1,000 reviewson the free allowance$2 every month, no card
Zero rowszero chargeblocks, captchas and retries are on us
−30%on volume tiersthe catalog returns your key's price

Pay as you go

$0/mo
  • $2 free credit / month
  • 60 requests / min
  • List unit prices

Starter

$19/mo
  • $15 free credit / month
  • 300 requests / min
  • 10% off unit prices

Scale

$299/mo
  • $250 free credit / month
  • 1,200 requests / min
  • 30% off unit prices

Same wallet, same key and same $2 monthly allowance as every other Data API. Prices are launch pricing read live from the billing config — GET /v1/scraper/collectors returns the price your key actually pays.

Integration

One POST, typed rows

Base URL https://api.quanticdata.io/v1, Bearer auth, the same key as every other Data API. Endpoint: POST /v1/scraper/collectors/amazon_reviews/run.

curl -X POST https://api.quanticdata.io/v1/scraper/collectors/amazon_reviews/run \
  -H "Authorization: Bearer $QD_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"product":"B07FZ8S74R","country":"us","max_results":10}'

What people build with the Amazon reviews API

Three shapes of work this endpoint was designed around.

Review mining for product teams

Pull critical-filtered reviews for your ASINs and the complaint themes arrive pre-ranked by helpful votes, with the variant column pointing at which configuration fails.

Competitor listing analysis

Top-sorted reviews are the arguments Amazon itself puts in front of buyers — the exact language that sells the rival product, ready for positioning work.

Verified-share auditing

The verified and Vine flags per row make review-quality measurable: what share of a listing's praise is purchase-backed, per marketplace.

Amazon reviews API versus rolling your own

The differences that actually cost time when you build this in-house.

DIY scraperThis collector
Login wallA signin redirect that breaks your crawlerDetected, worked around via the product page, reported in notes
FlagsBadges to parse out of markupverified_purchase, vine, helpful_votes as typed columns
MarketplacesOne domain hard-codedASIN + country: .com, .it, .de, .co.uk and the rest
Amazon reviews API: the POST to /v1/scraper/collectors/amazon_reviews/run with product and country on the left, and the JSON envelope on the right with 10 reviews and usage.cost_usd $0.02.
The same call you would paste into a terminal: a Bearer key, product, country and sort in the body, and back the envelope every QuanticData endpoint returns — type, message, payload — where count is how many reviews arrived and usage.cost_usd is $0.02, which is 10 × $0.002. A run that delivers nothing costs nothing. The key is good for 60 req/min on the free tier.

Sources and standards

The platform documentation and standards this collector is built against — check any claim on this page against the primary source:

FAQ

Questions we get about the Amazon reviews API.

Something else? Ask us →

How many reviews can I get per product?

Every review Amazon serves without login: commonly the first pages plus the product page's embedded top reviews — around 10–30 per product in practice. When Amazon serves more public pages, the run keeps paginating up to your max_results, and the notes always state how the run ended.

Can I filter to critical reviews only?

Yes — stars accepts 1–5, positive or critical, applied by Amazon before parsing, so a critical-only pull spends nothing on praise.

Which marketplaces are supported?

Any Amazon storefront the search collectors support: pass country (us, it, de, uk, fr, es, ca, jp…) and the matching domain is used, with the review's own country also parsed from its date line.

Is this allowed?

The collector reads public pages only, never logs in and never bypasses the wall — behind-login content stays behind login. You get what any signed-out visitor sees, structured.

Is there a free Amazon reviews API?

Every account gets $2 of credit every month with no card, which is about 1,000 delivered reviews on this endpoint at $0.002 each. It renews monthly, and a run that delivers nothing is never billed — so a failed or blocked attempt does not eat the allowance.

How much does one run cost?

Multiply the rows you actually receive by $0.002. A run capped at 100 reviews — the maximum for this collector — costs $0.2 if every row comes back, and less when the source has fewer. Volume tiers take up to 30% off, and GET /v1/scraper/collectors returns the price your key actually pays.

Run the Amazon reviews API now

$2 of free credit every month, no card. Your key returns its own prices from GET /v1/scraper/collectors.

Get my free API key