Amazon Asins Scraper
Pricing
$3.99/month + usage
Go to Apify Store
Amazon Asins Scraper
Scrape full product details from Amazon using a list of ASINs or product URLs.
Pricing
$3.99/month + usage
Rating
0.0
(0)
Developer

codingfrontend
Maintained by Community
Actor stats
0
Bookmarked
2
Total users
1
Monthly active users
a day ago
Last modified
Categories
Share
Scrape full product details from Amazon by providing a list of ASINs or product URLs. Supports Amazon India, US, UK, Germany, Japan, Canada, Australia, and Brazil.
What it does
- Accepts a list of Amazon ASINs (e.g.
B08HDJ86NZ) or full product URLs - Scrapes detailed product information: title, brand, price, rating, reviews, features, images, technical specs
- Optionally extracts customer reviews
- Runs up to 5 products in parallel for fast scraping
Input
{"mode": "asin","asins": ["B08HDJ86NZ", "B0FMDL81GS", "B09V3KXJPB"],"country": "in","maxItems": 50,"extractReviews": false}
Input Fields
| Field | Type | Default | Description |
|---|---|---|---|
mode | string | asin | asin (list of ASINs) or productUrl (full URLs) |
asins | string[] | — | Amazon ASINs to scrape (for asin mode) |
productUrls | string[] | — | Full Amazon product page URLs (for productUrl mode) |
country | string | in | Marketplace: in, com, co.uk, de, co.jp, ca, com.au, com.br |
maxItems | integer | 50 | Maximum products to return (1–1000) |
extractReviews | boolean | false | Whether to extract customer reviews |
proxyConfiguration | object | — | Apify proxy settings |
Output
{"asin": "B08HDJ86NZ","title": "boAt Deuce USB 300 2 in 1 Type-C & Micro USB Cable","brand": "boAt","url": "https://www.amazon.in/dp/B08HDJ86NZ","price": { "value": 149, "currency": "₹" },"listPrice": { "value": 399, "currency": "₹" },"discount": "63%","rating": 4.2,"reviewCount": 85420,"inStock": true,"imageUrl": "https://m.media-amazon.com/images/I/51example.jpg","images": ["https://...1.jpg", "https://...2.jpg"],"description": "...","features": ["Compatible with all Type C & Micro USB enabled devices","Tangle-free braided cable"],"technicalDetails": {"Connector Type": "USB Type C / Micro USB","Cable Length": "1.5 Metres"},"categories": ["Computers & Accessories", "Cables & Accessories"],"scrapedAt": "2025-01-15T10:30:00.000Z"}
Usage Examples
Example 1: Scrape specific ASINs on Amazon India
{"mode": "asin","asins": ["B08HDJ86NZ", "B0FMDL81GS", "B09V3KXJPB"],"country": "in"}
Example 2: Scrape Amazon US products with reviews
{"mode": "asin","asins": ["B0C7N5HY6L", "B09G9FPHY6"],"country": "com","extractReviews": true}
Example 3: Scrape by full product URLs
{"mode": "productUrl","productUrls": ["https://www.amazon.in/dp/B08HDJ86NZ","https://www.amazon.in/dp/B0FMDL81GS"]}
Cost Estimation
| Operation | Cost |
|---|---|
| Per product (basic details) | $0.005 |
| Per customer review extracted | $0.001 |
Example: Scrape 100 ASINs = 100 × $0.005 = $0.50
Notes
- Run up to 5 products in parallel using
maxConcurrency: 5 - Proxy is recommended for large batches (
RESIDENTIALgroup for best results) - ASINs should be 10-character alphanumeric strings (e.g.
B08HDJ86NZ) - For books, ISBNs also work as ASINs (e.g.
9356405433)