Blog/data
1 min read

The Best Amazon Reviews API in 2026, Compared

There is no official Amazon reviews API. We compare the real options in 2026: PA-API, DIY scraping, single-vendor APIs, and pay-per-result scrapers.

The Best Amazon Reviews API in 2026, Compared

Copy this line to your agent to pull every review for an Amazon product.

set up https://monid.ai/SKILL.md and use apify to pull all reviews for an Amazon ASIN with text, ratings, and dates

Here is the fact that reframes this whole comparison: there is no official Amazon reviews API. Amazon's own Product Advertising API returns a star rating and a review count, and not one word of review text. So "the best Amazon reviews API" is really a choice between workarounds, and the honest comparison is about which workaround fits your job, not which brand is best.

We will give every option its fair credit, including the ones that are not ours.

The contenders

1. Amazon's official APIs. PA-API 5.0 exposes CustomerReviews.StarRating and CustomerReviews.Count, which is genuinely useful when all you need is "4.6 stars, 12,431 ratings" next to a product card. It is free, legal, and stable. It also requires an Amazon Associates account with sales activity to keep access, and it will not give you a single review title, body, date, or reviewer. On top of that, PA-API is slated for deprecation in 2026 as Amazon steers developers toward its newer Creators API, which keeps the same posture on review content. If your product depends on review text, the official route was never on the table.

2. DIY scraping. Maximum control and near-zero marginal cost per page, if you ignore the engineering. Amazon is one of the hardest targets on the web: aggressive anti-bot systems, rotating page layouts, and a login wall that keeps tightening what anonymous visitors can see. You will own a proxy pool, a CAPTCHA strategy, and a parser that breaks on every layout test Amazon runs. For a team whose core product is scraping infrastructure, that can pencil out. For everyone else it is a pager that never stops.

3. Single-vendor scraping APIs. Companies like Rainforest, Oxylabs, and Axesso sell Amazon data behind subscriptions or credit bundles. The good ones are reliable and fast, and if you pull Amazon reviews every day at volume, a dedicated contract can be the right call. The structural cost is the same one every subscription has: you commit before you know your real usage, the plan is priced for your peak month, and adding a second data source later means a second vendor, a second key, and a second invoice.

4. The marketplace route. The same battle-tested scrapers, rented per result instead of by subscription. Through Monid, the Apify actors that specialize in Amazon reviews are one discover away, priced per review returned, with the exact price shown before you run. No Associates account, no proxy pool, no monthly plan.

What the review scrapers actually return

Two verified endpoints cover most Amazon review jobs, and they are not interchangeable:

  • axesso_data/amazon-reviews-scraper pulls reviews by ASIN: rating, title, full text, date, reviewer identity, verified-purchase status, helpful votes, attached media, and the aggregated rating distribution. It batches multiple ASINs and filters by star rating, keyword, reviewer type, and media, across multiple Amazon domains.
  • web_wanderer/amazon-reviews-extractor covers 20+ regional Amazon domains and adds variant association (which color or size the review belongs to), language tags, and aspect-level sentiment summaries, with an expanded collection mode that sweeps across star ratings.

Both bill per review returned, at a fraction of a cent per review; current per-endpoint prices are on the catalog page at monid.ai/tools. For one-off jobs on arbitrary review pages (a Trustpilot page today, an Amazon listing tomorrow), Strale's product-reviews-extract endpoint trades per-review pricing for a flat per-call price and returns a ready-made sentiment and pros-and-cons summary.

The comparison that matters

Review textAccess hurdleMaintenanceBilling shape
PA-API / Creators API✗ ratings onlyAssociates account with salesnonefree
DIY scrapingproxies, CAPTCHAs, login wallconstantinfra + eng time
Single-vendor APIcontract or credit bundlenonesubscription, peak-priced
Monid marketplaceone account, one walletnoneper review returned

The pattern: the official route lacks the data, DIY lacks the peace of mind, and the subscription route locks a commitment before you know your volume. Pay-per-result is the only shape where a 500-review experiment costs pennies and a zero-usage month costs zero.

Run it

For agents

Grab an API key at app.monid.ai, then paste this to your agent and hand it the key:

set up https://monid.ai/SKILL.md

It learns the whole discover, inspect, run workflow itself. More details in the agent quickstart.

For humans

npm install -g @monid-ai/cli
monid keys add --label main --key <your-api-key>

More details in the CLI quickstart. Then:

monid run -p apify -e /axesso_data/amazon-reviews-scraper \
  -i '{"asin": "B0BSHF7WHW", "domainCode": "com", "maxPages": 5}'
# -> Run ID: 01HXYZ...

monid runs get -r 01HXYZ... -o reviews.json
# -> COMPLETED: reviews with text, stars, dates,
#    verified-purchase flags, helpful votes
#    billed per review

A few hundred reviews lands well under a dollar, and you see the exact figure during the free inspect step before anything is billed.

The honest caveat

If star ratings and counts are genuinely all you display, use the official API: it is free and Amazon-blessed, and none of the scrapers can match that. And if you pull massive, predictable Amazon volume every single day, price out a dedicated vendor contract; at steady peak usage, subscriptions can beat per-result pricing. The marketplace route wins the wide middle: real review text, zero standing commitment, and the same wallet that covers your next data source when the project grows past Amazon.

FAQ

Is there an official Amazon API for review text? No. PA-API 5.0 returns only the star rating and review count, and Amazon's newer Creators API keeps the same restriction. Full review text has never been offered through an official API.

Which endpoint should I pick for bulk review pulls?axesso_data/amazon-reviews-scraper for straight ASIN-to-reviews jobs with filtering; web_wanderer/amazon-reviews-extractor when you need regional domains, variant association, or its aspect-level sentiment summaries.

What does it cost? A fraction of a cent per review returned, shown before you run. No subscription, no minimum. Current prices for every endpoint are listed at monid.ai/tools.

Do I need proxies or an Amazon account? No. The scraping infrastructure stays with the providers. You bring one Monid account and a pay-as-you-go balance.

Try it

Run a free discover for "amazon product reviews", inspect the endpoints and their current prices, and pull a small batch on the ASIN you care about. If the data holds up, scale the same call. Start at monid.ai.

dataagentsecommerce