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.
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.
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?
| Field | Product Advertising API | Careful scraping |
|---|---|---|
| Price and deal price | Yes, for covered items | Yes, as displayed |
| Title, brand, features | Yes | Yes |
| Images | Yes (licensed for associate use) | Copyrighted, collect facts not files |
| Variations (size, color) | Partial | Yes, every variant with its own price and stock |
| Full review text | No | Yes |
| Best-seller rank | Limited | Yes, from the product and category pages |
| Buy Box seller | Limited | Yes, as shown |
| Access requirement | Approved associate with qualifying sales | None, 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.
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.
STEP 01
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
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
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
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.
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.
FINAL ASSEMBLY
Describe the fields once, schedule it, and get clean product data in a spreadsheet or your pricing stack.