# Amazon Product Scraper - Prices, Reviews & Images (No API Key) (`convertfleetdotonline/amazon-product-scraper`) Actor

Collect Amazon product data based on URL and country. Extract reviews, prices, descriptions, images and ASINs without the Amazon API.

- **URL**: https://apify.com/convertfleetdotonline/amazon-product-scraper.md
- **Developed by:** [Hasnain Nisar](https://apify.com/convertfleetdotonline) (community)
- **Categories:** E-commerce, Automation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

Pay per usage

This Actor is paid per platform usage. The Actor is free to use, and you only pay for the Apify platform usage, which gets cheaper the higher subscription plan you have.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-usage

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## Amazon Product Scraper

Use this Amazon scraper to collect product data based on **URL and country** from the Amazon website - no Amazon API needed. Extract prices, reviews, descriptions, images, ratings and **ASINs** (Amazon Standard Identification Numbers), then download the data as JSON, CSV, Excel, XML or RSS.

### What can this Amazon scraper do?

- ?? Scrape **product pages** (`./dp/ASIN`) in full detail
- ?? Expand **search results** (`./s?k=keyword`), **category** pages (`./b?node=.`) and **best-seller** lists, scraping every product found
- ?? Target any of **22 Amazon marketplaces** (US, UK, DE, FR, IT, ES, CA, MX, BR, IN, JP, AU, NL, SE, PL, BE, TR, AE, SA, SG, EG) with the country selector
- ? Optionally extract the **customer reviews** shown on each product page
- ?? Follow pagination on search/category pages, with limits for pages and total products

### Output for every product

| Field | Description |
|---|---|
| `asin` | Amazon Standard Identification Number |
| `title`, `brand` | Product name and brand |
| `price`, `currency`, `listPrice`, `savingsPercent` | Current price, list price and discount |
| `stars`, `reviewsCount` | Average rating and number of ratings |
| `inStock`, `availability` | Stock status |
| `images`, `thumbnail` | High-resolution product images |
| `features` | Bullet-point highlights |
| `description` | Full product description |
| `attributes` | Technical details / specification table |
| `breadcrumbs` | Category path |
| `soldBy`, `shipsFrom`, `deliveryMessage` | Buy-box seller and delivery info |
| `bestSellersRank` | Best Sellers Rank string |
| `reviews` | Top on-page customer reviews (optional) |

### How to use

1. Paste one or more Amazon URLs (product, search, category or best-sellers).
2. Pick a **country** to force a specific marketplace, or keep *Use URL as-is*.
3. Set **Maximum products** and (for listing URLs) **Max pages**.
4. Run the Actor and export the dataset in the format you need.

### Example input

```json
{
    "startUrls": [{ "url": "https://www.amazon.com/s?k=wireless+earbuds" }],
    "country": "US",
    "maxItems": 50,
    "includeReviews": true
}
```

### Tips

- **Residential proxy is enabled by default** and strongly recommended - Amazon blocks most datacenter IPs.
- Amazon shows roughly the top 8-10 reviews to visitors who aren't logged in; `maxReviews` caps how many of those are extracted.
- Prices are returned both parsed (`price`, `currency`) and raw (`priceRaw`), so you never lose the original formatting.

### Use cases

- **Price monitoring** - track prices, discounts and buy-box changes across 22 marketplaces
- **Competitor research** - monitor rankings, ratings and review counts in your niche
- **Catalog building** - pull titles, images, bullets and specs for your own listings
- **Repricing & arbitrage** - feed live Amazon prices into your repricing tools

### FAQ

**Does it need an Amazon API key or login?**
No. It reads the same public product pages any visitor sees - no API key, no account, no cookies.

**Which URLs can I paste?**
Product pages (`/dp/ASIN`), search results (`/s?k=.`), category pages (`/b?node=.`) and Best Sellers lists. Listing pages are expanded and every product found is scraped.

**Can I scrape Amazon.co.uk / .de / .in / .co.jp?**
Yes - set the `country` input and the domain of every URL is rewritten to that marketplace (22 supported).

**How do I export the data?**
From the run's dataset tab: JSON, CSV, Excel, XML or RSS - or via the Apify API.

**Why are some products missing?**
Amazon occasionally serves a robot check. The Actor retries with fresh sessions; persistent failures are skipped and logged.

**Is it legal to scrape Amazon?**
The Actor extracts only publicly available data (no login, no personal accounts). Make sure your use of the data complies with the laws that apply to you, including data-protection rules.

# Actor input Schema

## `startUrls` (type: `array`):

One or more Amazon URLs to scrape. Supported: product pages (./dp/ASIN), search results (./s?k=keyword), category pages (./b?node=.) and best-seller lists (./gp/bestsellers/.). Listing pages are expanded and each discovered product is scraped in full detail.

## `country` (type: `string`):

Which Amazon marketplace to scrape. When set, the domain of every input URL is rewritten to the selected country's marketplace (e.g. amazon.de for Germany). Keep "Use URL as-is" to scrape each URL on its original domain.

## `maxItems` (type: `integer`):

Stop after this many products have been scraped (across all input URLs).

## `maxSearchPages` (type: `integer`):

How many result pages to paginate through for each search, category or best-seller URL.

## `includeReviews` (type: `boolean`):

Also extract the customer reviews shown on each product page (author, rating, title, date, verified-purchase flag and full text). Amazon shows up to ~10 top reviews to logged-out visitors.

## `maxReviews` (type: `integer`):

Upper limit of reviews extracted per product (only used when "Include customer reviews" is on).

## `proxyConfiguration` (type: `object`):

Proxy to use. Residential proxy is strongly recommended - Amazon blocks most datacenter IPs.

## Actor input object example

```json
{
  "startUrls": [
    {
      "url": "https://www.amazon.com/s?k=wireless+earbuds"
    }
  ],
  "country": "AS_IS",
  "maxItems": 100,
  "maxSearchPages": 3,
  "includeReviews": false,
  "maxReviews": 10,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "startUrls": [
        {
            "url": "https://www.amazon.com/s?k=wireless+earbuds"
        }
    ],
    "proxyConfiguration": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ]
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("convertfleetdotonline/amazon-product-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "startUrls": [{ "url": "https://www.amazon.com/s?k=wireless+earbuds" }],
    "proxyConfiguration": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
    },
}

# Run the Actor and wait for it to finish
run = client.actor("convertfleetdotonline/amazon-product-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "startUrls": [
    {
      "url": "https://www.amazon.com/s?k=wireless+earbuds"
    }
  ],
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}' |
apify call convertfleetdotonline/amazon-product-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=convertfleetdotonline/amazon-product-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/acts/p1QEqWY5DzuUeCFe1/builds/GJw93WVsAGhskZzlr/openapi.json
