Amazon Scraper avatar
Amazon Scraper

Pricing

$5.00/month + usage

Go to Apify Store
Amazon Scraper

Amazon Scraper

Developed by

Donjuan

Donjuan

Maintained by Community

Amazon Scraper collects structured product information from Amazon category or product pages, including title, image, price, rating, reviews, ASIN, and product link. It’s useful for market analysis, price tracking, and building product catalogs.

0.0 (0)

Pricing

$5.00/month + usage

0

2

2

Last modified

9 days ago


Amazon Scraper

A script for scraping product data from Amazon category or product pages.

Overview

This scraper is built for the Apify platform and uses Playwright to extract structured product details. It works with both category search result pages and individual product detail pages.

Input

Parameters

  • urls: An array of Amazon category or product URLs to scrape.
  • limit: The maximum number of results to retrieve per URL.

Example Input

{
"limit": 100,
"urls": [
{
"url": "https://www.amazon.com/s?k=laptop"
}
]
}

Output

The scraper returns a JSON array, where each object represents a product with details such as:

  • title – Product name
  • image – Product image URL
  • price – Current listed price (if available)
  • dispatched – Dispatch information (if available)
  • reviews – Average customer rating
  • all_views – Number of customer reviews
  • asin – Amazon Standard Identification Number
  • url – Product page URL
  • delivery – Delivery estimate (if available)

Example Output

[
{
"title": "Samsung Galaxy Book3 360 Wi-Fi Laptop, 13.3 Inch, 13th gen Intel Core i5 Processor, 8GB RAM, 256GB Storage, Graphite - Official",
"image": "https://m.media-amazon.com/images/I/616wR1TJ49L._AC_UY218_.jpg",
"price": "USD 514.86",
"dispatched": "",
"reviews": "4.2 out of 5 stars",
"all_views": "196",
"asin": "B0BQRTQ1XK",
"url": "https://www.amazon.co.uk/dp/B0BQRTQ1XK",
"delivery": ""
}
]

How to Use

  1. Create a new task on the Apify platform.
  2. Configure the task with your input JSON, specifying the Amazon urls and limit.
  3. Run the task. The scraper will process the input and return structured product data in JSON format.

Disclaimer

This scraper is provided “as is” without any warranties. You are responsible for how you use it. Please ensure compliance with Amazon’s Terms of Service and applicable laws when running this scraper.