WEBROBOT

How to Scrape Amazon Product Data in 2026 (Prices, Variants, and Reviews)

2026-07-16 · 10 min read

There are two honest ways to get Amazon product data in 2026: the official Product Advertising API, which returns price, images, and features cleanly to approved associates, and careful scraping for the fields the API omits, like full review text and live Buy Box detail. Amazon prohibits automated access in its terms and runs strong bot protection, so the right answer is usually a mix: API for what it covers, light scraping for the rest.

Run the robot

Last updated July 2026

Robot console · WR-01

Standing by Running · s Complete · rows

1 · Pick a target

3 · Fields to extract

Agent log

Crawl graph

Extracted data · rows

Want this data fresh every morning, without lifting a finger?

01 / TWO ROUTES FIG. 1 · API OR SCRAPE

The official API and scraping return different things

Most guides pick a side. The useful answer is that the two routes cover different fields, and serious sellers use both.
Field Product Advertising API Careful scraping
Price and deal priceYes, for covered itemsYes, as displayed
Title, brand, featuresYesYes
ImagesYes (licensed for associate use)Copyrighted, collect facts not files
Variations (size, color)PartialYes, every variant with its own price and stock
Full review textNoYes
Best-seller rankLimitedYes, from the product and category pages
Buy Box sellerLimitedYes, as shown
Access requirementApproved associate with qualifying salesNone, but subject to Amazon terms and rate limits

The general tradeoff between an official feed and scraping (coverage, cost, freshness, reliability) is laid out in web scraping vs API. On Amazon specifically, the split above is why most sellers end up running both.

02 / RULES FIG. 2 · WHAT IS ALLOWED

What is allowed, and what is not

Amazon is stricter than the average store. Knowing the lines keeps a price-tracking workflow from becoming a problem.

Price and availability are facts, and facts are not copyrightable, which is why price monitoring is common and generally treated as collecting public data. But Amazon's conditions of use prohibit automated access, so scraping is a contract question even where the underlying facts are public. It also runs enterprise bot protection, so heavy scraping is fragile and against the terms.

Two things fall clearly on the wrong side. Product photos and written descriptions are copyrighted, so do not republish them as your own listing. And hammering the site at high frequency is both a terms violation and a fast way to get blocked. The durable pattern is the official API for what it covers, plus light, low-frequency collection of facts (price, rank, stock) where you have a legitimate need, at a polite request rate.

The full legal background, including the case law on public data, is in is web scraping legal. For anything material, run your specific use past counsel.

03 / WALKTHROUGH FIG. 3 · NO-CODE SETUP

Tracking Amazon prices and reviews without code

For the fields the API does not cover, or for stores beyond Amazon, a no-code agent is the low- maintenance route. Here is the setup.

STEP 01

List the products

Give the robot a set of product URLs or a search results page. Agent actions can set a location or fill a search before it starts reading, so results match what a buyer would see.

STEP 02

Describe the row

Plain English: "title, price, deal price, ASIN, variants, stock, star rating, review count." For review mining, add "each review: rating, date, verified flag, text."

STEP 03

Schedule it

Hourly or daily for price and rank, weekly for review sweeps. Each run delivers only what changed, so you see price cuts and stockouts as movement instead of re-reading the catalog.

STEP 04

Send it where it is used

Google Sheets or Excel for analysis, Slack for a price-drop alert, or the REST API into a repricer or dashboard.

The full workflow across every store, not just Amazon, is on the ecommerce data scraping page, and the dedicated price-tracking setup is on price monitoring.

04 / USE CASES FIG. 4 · WHAT IT IS FOR

What sellers and analysts actually do with the data

Price and rank tracking is the headline use: watch your own listings and your competitors', catch every price move and stockout, and feed a repricing rule so you are never the last to react. Review mining is the quieter one that pays off in product decisions, because the complaints that repeat across a category are a product brief written by customers.

Assortment and share-of-shelf analysis rounds it out: which products a competitor stocks, what they add and drop, and where you rank on their category pages. For a private-label seller, an assortment gap is a launch opportunity you can see forming weeks ahead.

None of this is much use if you cannot see whether it is actually making money. Sellers who track prices and rank across marketplaces usually pair the data with a clear read on what each product line actually earns after fees and payouts, so a pricing change is judged on margin, not just volume.

05 / FAQ FIG. 5 · FIELD QUESTIONS

Scraping Amazon product data, answered

Technically yes, and many sellers track price, rank, and stock this way, but Amazon prohibits scraping in its conditions of use and runs strong bot protection. The cleaner path where it fits is the official Product Advertising API, which returns price, images, and features to approved associates. The honest approach is to use the API for what it covers and scrape carefully, at low frequency, only for the fields it omits.

Yes. The Product Advertising API (PA-API) gives approved Amazon Associates programmatic access to product price, images, features, and availability. It is clean and compliant, but it requires an active associate account with qualifying sales, it is rate-limited, and it omits things like full review text and some Buy Box detail. Sellers also have the Selling Partner API for their own catalog and orders.

Title, brand, current price and any deal price, ASIN, variations (size, color, style), star rating, review count and review text, category and best-seller rank, availability, and the seller or Buy Box winner. Price, rank, and stock are the fields most sellers track over time; reviews are the richest source for product research.

Scraping publicly visible facts like price and availability is generally treated as public data, but Amazon's conditions of use prohibit automated access, which makes it a contract question. Product photos and descriptions are also copyrighted. The low-risk route is the official API for covered fields plus light, low-frequency collection of facts where terms allow, rather than heavy scraping of copyrighted content.

FINAL ASSEMBLY

Track prices, stock, and reviews across every store

Describe the fields once, schedule it, and get clean product data in a spreadsheet or your pricing stack.