Amazon Product scraper avatar
Amazon Product scraper

Pricing

$5.00 / 1,000 products

Go to Apify Store
Amazon Product scraper

Amazon Product scraper

Developed by

Lucrate Results

Lucrate Results

Maintained by Community

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.

0.0 (0)

Pricing

$5.00 / 1,000 products

0

1

1

Last modified

7 hours ago

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:

FieldTypeRequiredDescription
countrystringCountry code to scrape Amazon from. Options: US, UK, DE, FR, IT, ES, CA, AU, IN, JP.
keywordsarray of stringsArray of keywords to search on Amazon.
maxItemsintegerMaximum number of products to scrape. Default: 50.
proxyConfigurationobjectProxy 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"
}
}