Amazon ASINs Scraper avatar

Amazon ASINs Scraper

Pricing

Pay per usage

Go to Apify Store
Amazon ASINs Scraper

Amazon ASINs Scraper

Amazon ASIN scraper - collect ASINs in bulk from keyword searches or category pages: ASIN, title, price, position and product URL. Feed product research, PPC and repricing pipelines. No API key. Export CSV or JSON.

Pricing

Pay per usage

Rating

0.0

(0)

Developer

Hasnain Nisar

Hasnain Nisar

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

4 days ago

Last modified

Share

Gets you product data from Amazon. Unofficial API. Scrapes and downloads product information without using the Amazon API, including reviews, prices, descriptions.

What does Amazon ASINs Scraper do?

Give it a list of ASINs (Amazon Standard Identification Numbers) and it fetches the full product detail page for each one, on any Amazon marketplace:

  • 🏷️ Title, brand, ASIN, canonical URL
  • 💰 Current price, list price, currency, savings percent
  • ⭐ Star rating and review count, plus the customer reviews shown on the page
  • 📦 Stock status, availability message, seller ("Sold by") and fulfiller ("Ships from")
  • 🖼️ High-resolution product images
  • 📋 Feature bullets, product description, technical attributes
  • 🗂️ Category breadcrumbs and Best Sellers Rank

Input

{
"asins": ["B07GBZ4Q68", "B08N5WRWNW"],
"amazonDomain": "amazon.com",
"language": "en",
"proxyCountry": "AUTO_SELECT_PROXY_COUNTRY"
}
  • asins (required) — one or more ASINs to scrape.
  • amazonDomain — which Amazon website to use (amazon.com, amazon.co.uk, amazon.de, amazon.in, amazon.co.jp, …). Defaults to amazon.com.
  • language — language to request from Amazon. Each domain supports a different set of languages; unsupported choices fall back to the domain default.
  • proxyCountry — pin the proxy exit country. By default it is selected automatically from the Amazon domain, which keeps blocking rates low and prices/currency consistent with the marketplace.
  • includeReviews / maxReviews — control whether on-page customer reviews are included in each result.

Output

One dataset item per ASIN:

{
"url": "https://www.amazon.com/dp/B07GBZ4Q68",
"asin": "B07GBZ4Q68",
"title": "Anker Soundcore Mini Bluetooth Speaker",
"brand": "Anker",
"stars": 4.6,
"reviewsCount": 76781,
"price": 27.99,
"currency": "USD",
"listPrice": 34.99,
"savingsPercent": 20,
"inStock": true,
"images": ["https://m.media-amazon.com/images/I/71ax8sa1r7L.jpg"],
"features": ["INCREDIBLE SOUND LOVED BY 20 MILLION+ PEOPLE ..."],
"description": "...",
"attributes": { "Brand": "Anker", "Speaker Type": "Portable" },
"breadcrumbs": ["Electronics", "Portable Audio & Video", "Portable Speakers & Docks"],
"soldBy": "AnkerDirect",
"shipsFrom": "Amazon",
"reviews": [{ "author": "…", "rating": 5, "title": "…", "text": "…" }]
}

ASINs that cannot be fetched after all retries produce an item with an error field, so you always get one row per requested ASIN.

Download the data as JSON, CSV, Excel, XML or RSS from the dataset tab.

Use cases

  • Bulk product lookups — enrich a spreadsheet of ASINs with live titles, prices and ratings
  • Price & stock monitoring — schedule daily runs over your ASIN list and diff the results
  • Marketplace comparison — run the same ASINs against amazon.com, .co.uk or .de and compare prices
  • Listing QA — verify images, bullets and attributes across your whole catalog

FAQ

What is an ASIN? The 10-character Amazon Standard Identification Number in every product URL, e.g. amazon.com/dp/B07GBZ4Q68. Paste one per line into the asins input.

Does it need an Amazon API key or login? No — it fetches the public product page for each ASIN. No API key, account or cookies required.

Can I use marketplaces other than amazon.com? Yes, set amazonDomain (e.g. amazon.co.uk, amazon.de, amazon.co.jp). Prices, currency and availability follow that marketplace.

What happens when an ASIN fails? After all retries you still get one row for it with an error field — so you can re-run just the failed ones.

How do I export the data? JSON, CSV, Excel, XML or RSS from the dataset tab, or via the Apify API.

Is this affiliated with Amazon? No. The scraper is unofficial and extracts only publicly visible product data.