Amazon Product scraper
Pricing
$5.00 / 1,000 products
Amazon Product scraper
Amazon Product Scraper built with PlaywrightCrawler and Crawlee. Search by keywords across multiple marketplaces (US, UK, DE, etc.) and extract product details like title, price, rating, reviews, brand, availability, image, category, and Prime eligibility. Outputs to dataset.
Pricing
$5.00 / 1,000 products
Rating
1.0
(1)
Developer

Lucrate Results
Actor stats
2
Bookmarked
23
Total users
6
Monthly active users
3 months ago
Last modified
Categories
Share
Amazon Product Scraper is an Apify actor built with Crawlee and Playwright. It allows you to scrape Amazon product data using search keywords. The actor outputs structured product information to the default dataset (JSON/CSV/XLSX).
Features
- Search Amazon by keywords.
- Extract product title, ASIN, price, rating, reviews, brand, image, availability, category, and Prime eligibility.
- Handles pagination automatically.
- Supports proxy configuration (Apify Proxy recommended).
- Configurable maximum number of products and concurrency.
Input
The actor expects a JSON input with the following structure:
| Field | Type | Required | Description |
|---|---|---|---|
country | string | ✅ | Country code to scrape Amazon from. Options: US, UK, DE, FR, IT, ES, CA, AU, IN, JP. |
keywords | array of strings | ✅ | Array of keywords to search on Amazon. |
maxItems | integer | ✅ | Maximum number of products to scrape. Default: 50. |
proxyConfiguration | object | ❌ | Proxy configuration object as required by Apify. Example for Apify Proxy: json { "useApifyProxy": true, "apifyProxyGroups": ["RESIDENTIAL"], "apifyProxyCountry": "US" } |
Example Input
{"country": "US","keywords": ["laptop", "headphones"],"maxItems": 50,"proxyConfiguration": {"useApifyProxy": true,"apifyProxyGroups": ["RESIDENTIAL"],"apifyProxyCountry": "US"}}