# Amazon Product Scraper - Prices, Reviews & Ratings (`eccentric_layout/amazon-scraper`) Actor

Scrape Amazon products by keyword or ASIN: real prices, full product details, ratings, and deep review pagination across marketplaces. No API key. Export JSON/CSV/Excel.

- **URL**: https://apify.com/eccentric\_layout/amazon-scraper.md
- **Developed by:** [Shahryar](https://apify.com/eccentric_layout) (community)
- **Categories:** E-commerce, Lead generation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $4.00 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

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

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
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.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use 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 – Prices, Reviews & Ratings (No API Key)

Extract structured product data from **Amazon** without an API key: **real prices**, complete **product details**, **ratings**, and **public reviews** — by keyword, ASIN, or product URL, across any Amazon marketplace. Export to JSON, CSV, or Excel.

Built for **price monitoring, e-commerce/market research, competitor analysis, and product intelligence**.

### Why this scraper

Most Amazon scrapers return thin search rows with **missing prices** (`N/A` / "see all buying options") and empty **brand/seller**. This one enriches every product from its **detail page** (so prices and fields are actually filled) and includes the **public reviews** Amazon shows there — completeness on the data Amazon exposes without login is the edge.

### What it does

- 🔎 **Search by keyword** – paginate Amazon search results.
- 🧱 **Full product details** – brand, price, list price, currency, availability, feature bullets, description, category breadcrumbs, and image gallery.
- 💲 **Real prices** – reads the canonical price even when the visible price is split into sub-elements (fixes the common `N/A`).
- ⭐ **Public reviews** – author, rating, title, text, date, verified-purchase badge, helpful votes (the reviews Amazon shows on each product page, no login).
- 🌍 **Any marketplace** – amazon.com, .co.uk, .de, .in, and more via the `domain` field.
- 🎯 **Direct ASIN / URL** – scrape specific products without searching.

### Example input

```json
{
  "searchQueries": ["wireless earbuds"],
  "domain": "amazon.com",
  "maxItems": 50,
  "scrapeProductDetails": true,
  "scrapeReviews": true,
  "maxReviewsPerProduct": 50,
  "proxyConfiguration": { "useApifyProxy": true, "apifyProxyGroups": ["RESIDENTIAL"] }
}
````

### Example product output

```json
{
  "type": "product",
  "asin": "B09B8V1LZ3",
  "title": "Wireless Earbuds, Bluetooth 5.3 Headphones",
  "brand": "Acme",
  "price": 29.99,
  "listPrice": 49.99,
  "currency": "USD",
  "rating": 4.4,
  "reviewsCount": 18432,
  "availability": "In Stock",
  "features": ["40H playtime", "IPX7 waterproof"],
  "breadcrumbs": ["Electronics", "Headphones", "Earbud Headphones"],
  "url": "https://www.amazon.com/dp/B09B8V1LZ3"
}
```

### Example review output

```json
{
  "type": "review",
  "asin": "B09B8V1LZ3",
  "author": "Jane D.",
  "rating": 5,
  "title": "Great value",
  "text": "Battery lasts forever and they sound great.",
  "date": "Reviewed in the United States on May 2, 2026",
  "verifiedPurchase": true,
  "helpfulVotes": 12
}
```

### Output fields

Search and product results are pushed as **product** items; with reviews enabled, each review is a separate **review** item.

**Product** (`type: "product"`)

| Field | Description |
|---|---|
| `asin` | Amazon product ID |
| `title` | Product title |
| `brand` | Brand / manufacturer |
| `price` | Current price (number) |
| `listPrice` | Original list price when discounted |
| `currency` | Currency code (USD, GBP, EUR, …) |
| `rating` | Average star rating (0–5) |
| `reviewsCount` | Total number of ratings |
| `availability` | Stock / availability text |
| `features` | Bullet-point feature list (array) |
| `description` | Product description |
| `breadcrumbs` | Category path (array) |
| `images` | Product image URLs (array) |
| `url` | Product page URL |
| `scrapedAt` | ISO 8601 timestamp |

**Review** (`type: "review"`)

| Field | Description |
|---|---|
| `asin` | Product the review belongs to |
| `author` | Reviewer name |
| `rating` | Star rating (1–5) |
| `title` | Review title |
| `text` | Review body |
| `date` | Review date |
| `verifiedPurchase` | Whether it is a verified purchase |
| `helpfulVotes` | "X people found this helpful" count |

### Common use cases

- **Price monitoring & repricing** – track prices and list prices over time.
- **Market & competitor research** – compare products, ratings, and review volume.
- **Review/sentiment analysis** – export reviews for a product or category.
- **Catalog enrichment** – fill product data from ASINs you already have.

### Input reference

| Field | Type | Description |
|---|---|---|
| `searchQueries` | array | Keywords to search on Amazon. |
| `asins` | array | Specific ASINs to scrape directly. |
| `productUrls` | array | Amazon `/dp/` URLs to scrape directly. |
| `domain` | string | Marketplace, e.g. `amazon.com`, `amazon.co.uk`. |
| `maxItems` | integer | Max products in total (`0` = no limit). |
| `maxPagesPerSearch` | integer | Search pages to paginate per query. |
| `scrapeProductDetails` | boolean | Enrich each product from its detail page (default `true`). |
| `scrapeReviews` | boolean | Also scrape product reviews. |
| `maxReviewsPerProduct` | integer | Cap on reviews per product. |
| `proxyConfiguration` | object | Proxy settings (residential recommended). |

### Notes & limits

- Amazon blocks datacenter IPs aggressively and serves CAPTCHA ("Robot Check") pages — use **residential proxies** (default) and the built-in retry/backoff.
- Amazon shows a limited number of **reviews** publicly (without login); this Actor collects the publicly available ones.

### FAQ

**Do I need an Amazon API key?** No. No PA-API, key, or login required.

**Why are some prices missing in other scrapers?** They read only the search row; prices there are often JS-loaded. This Actor reads the product detail page's canonical price, so prices are filled.

**Can I scrape other marketplaces?** Yes — set `domain` to `amazon.co.uk`, `amazon.de`, `amazon.in`, etc.

# Actor input Schema

## `searchQueries` (type: `array`):

Keywords to search on Amazon, e.g. "wireless earbuds", "yoga mat".

## `asins` (type: `array`):

Specific product ASINs (10-char Amazon IDs) to scrape directly, e.g. "B09B8V1LZ3".

## `productUrls` (type: `array`):

Amazon product (/dp/) URLs to scrape directly.

## `domain` (type: `string`):

Which Amazon marketplace to use, e.g. amazon.com, amazon.co.uk, amazon.de.

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

Maximum number of products to return in total. Set 0 for no limit.

## `maxPagesPerSearch` (type: `integer`):

How many search-result pages to paginate per query (Amazon shows ~16 products/page, up to ~7 pages).

## `scrapeProductDetails` (type: `boolean`):

Open each product page for complete data (brand, list price, availability, features, description, breadcrumbs, images). Turn off for faster, search-only results.

## `scrapeReviews` (type: `boolean`):

If enabled, also scrape reviews for each product (author, rating, title, text, date, verified purchase). Pushed as separate review items.

## `maxReviewsPerProduct` (type: `integer`):

Only used when 'Scrape reviews' is on. Maximum reviews to fetch per product (public reviews only).

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

Amazon blocks datacenter IPs. Residential proxies are strongly recommended for reliable runs.

## Actor input object example

```json
{
  "searchQueries": [
    "wireless earbuds",
    "yoga mat"
  ],
  "asins": [
    "B09B8V1LZ3"
  ],
  "productUrls": [
    "https://www.amazon.com/dp/B09B8V1LZ3"
  ],
  "domain": "amazon.com",
  "maxItems": 100,
  "maxPagesPerSearch": 7,
  "scrapeProductDetails": true,
  "scrapeReviews": false,
  "maxReviewsPerProduct": 50,
  "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 = {
    "searchQueries": [
        "wireless earbuds"
    ],
    "maxItems": 100,
    "proxyConfiguration": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ]
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("eccentric_layout/amazon-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 = {
    "searchQueries": ["wireless earbuds"],
    "maxItems": 100,
    "proxyConfiguration": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
    },
}

# Run the Actor and wait for it to finish
run = client.actor("eccentric_layout/amazon-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 '{
  "searchQueries": [
    "wireless earbuds"
  ],
  "maxItems": 100,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}' |
apify call eccentric_layout/amazon-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Amazon Product Scraper - Prices, Reviews & Ratings",
        "description": "Scrape Amazon products by keyword or ASIN: real prices, full product details, ratings, and deep review pagination across marketplaces. No API key. Export JSON/CSV/Excel.",
        "version": "0.1",
        "x-build-id": "F65pItEmlKW8j9oMJ"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/eccentric_layout~amazon-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-eccentric_layout-amazon-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/eccentric_layout~amazon-scraper/runs": {
            "post": {
                "operationId": "runs-sync-eccentric_layout-amazon-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/eccentric_layout~amazon-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-eccentric_layout-amazon-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "properties": {
                    "searchQueries": {
                        "title": "Search queries",
                        "type": "array",
                        "description": "Keywords to search on Amazon, e.g. \"wireless earbuds\", \"yoga mat\".",
                        "items": {
                            "type": "string"
                        }
                    },
                    "asins": {
                        "title": "ASINs",
                        "type": "array",
                        "description": "Specific product ASINs (10-char Amazon IDs) to scrape directly, e.g. \"B09B8V1LZ3\".",
                        "items": {
                            "type": "string"
                        }
                    },
                    "productUrls": {
                        "title": "Product URLs",
                        "type": "array",
                        "description": "Amazon product (/dp/) URLs to scrape directly.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "domain": {
                        "title": "Amazon marketplace",
                        "type": "string",
                        "description": "Which Amazon marketplace to use, e.g. amazon.com, amazon.co.uk, amazon.de.",
                        "default": "amazon.com"
                    },
                    "maxItems": {
                        "title": "Max products",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Maximum number of products to return in total. Set 0 for no limit."
                    },
                    "maxPagesPerSearch": {
                        "title": "Max search pages",
                        "minimum": 1,
                        "type": "integer",
                        "description": "How many search-result pages to paginate per query (Amazon shows ~16 products/page, up to ~7 pages).",
                        "default": 7
                    },
                    "scrapeProductDetails": {
                        "title": "Scrape full product details",
                        "type": "boolean",
                        "description": "Open each product page for complete data (brand, list price, availability, features, description, breadcrumbs, images). Turn off for faster, search-only results.",
                        "default": true
                    },
                    "scrapeReviews": {
                        "title": "Scrape reviews",
                        "type": "boolean",
                        "description": "If enabled, also scrape reviews for each product (author, rating, title, text, date, verified purchase). Pushed as separate review items.",
                        "default": false
                    },
                    "maxReviewsPerProduct": {
                        "title": "Max reviews per product",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Only used when 'Scrape reviews' is on. Maximum reviews to fetch per product (public reviews only).",
                        "default": 50
                    },
                    "proxyConfiguration": {
                        "title": "Proxy configuration",
                        "type": "object",
                        "description": "Amazon blocks datacenter IPs. Residential proxies are strongly recommended for reliable runs.",
                        "default": {
                            "useApifyProxy": true,
                            "apifyProxyGroups": [
                                "RESIDENTIAL"
                            ]
                        }
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
