# Amazon Product Scraper (`vulnv/amazon-product-scraper`) Actor

Extract complete product details from Amazon including prices, reviews, descriptions, images, and specifications. Get accurate data for market research, price monitoring, and product analysis.

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

## Pricing

from $2.80 / 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.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

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

## 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

Extract complete product information from Amazon quickly and reliably. Get prices, descriptions, reviews, images, specifications, and availability for any Amazon product across all international marketplaces.

### What You Get

This scraper retrieves comprehensive product data including:

- **Product Details**: Name, brand, SKU, ASIN, and manufacturer information
- **Pricing**: Current price, regular price, currency, and discount information
- **Reviews & Ratings**: Average rating, total review count, and rating distribution
- **Images**: Main product image plus all additional product photos
- **Descriptions**: Full product descriptions and feature lists
- **Specifications**: Complete technical details and product attributes
- **Availability**: Real-time stock status
- **Categories**: Product breadcrumbs and category hierarchy

### How to Use

#### Input

Provide the following information:

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| **Product URLs** | List | Yes | One or more Amazon product page URLs |
| **Concurrent Requests** | Number | No | How many products to process at once (1-20, default: 5) |

#### Example Input

```json
{
    "product_urls": [
        "https://www.amazon.com/dp/B08N5WRWNW",
        "https://www.amazon.co.uk/dp/B085S2147W",
        "https://www.amazon.de/dp/B07ZPKN6YR"
    ],
    "max_concurrent_requests": 5
}
```

You can scrape products from any Amazon marketplace including:

- Amazon.com (United States)
- Amazon.co.uk (United Kingdom)
- Amazon.de (Germany)
- Amazon.fr (France)
- Amazon.it (Italy)
- Amazon.es (Spain)
- Amazon.ca (Canada)
- Amazon.co.jp (Japan)
- And more...

### Output

The scraper returns structured data for each product in JSON format.

#### Sample Output

```json
{
    "url": "https://www.amazon.co.uk/dp/B085S2147W",
    "status": "success",
    "asin": "B085S2147W",
    "name": "Cudy N300 WiFi Unlocked 4G LTE Cat4 Modem Router",
    "price": "38.72",
    "currency": "GBP",
    "regularPrice": "46.29",
    "availability": "InStock",
    "brand": {
        "name": "Cudy"
    },
    "aggregateRating": {
        "ratingValue": 4.3,
        "bestRating": 5,
        "reviewCount": 5697
    },
    "mainImage": {
        "url": "https://m.media-amazon.com/images/I/61NlSN4+liL.jpg"
    },
    "description": "About this item...",
    "features": [
        "4G router with sim slot...",
        "High Gain Antennas..."
    ],
    "additionalProperties": [
        {
            "name": "brand",
            "value": "Cudy"
        },
        {
            "name": "item weight",
            "value": "205 g"
        }
    ]
}
```

### Use Cases

**E-commerce & Retail**

- Monitor competitor prices and stock levels
- Track your own product listings
- Research product trends and market demand

**Market Research**

- Analyze pricing strategies across categories
- Study customer reviews and sentiment
- Compare product features and specifications

**Price Intelligence**

- Track price changes over time
- Identify deals and discount patterns
- Optimize your pricing strategy

**Product Catalog Management**

- Import product data for your store
- Keep product information up-to-date
- Enrich your existing product database

**Dropshipping & Arbitrage**

- Find profitable products to resell
- Compare prices across marketplaces
- Identify trending products quickly

### Tips for Best Results

1. **Valid URLs**: Make sure your URLs include `/dp/` or `/gp/product/` with a valid ASIN
2. **Concurrent Requests**: Start with 5 concurrent requests, adjust based on your needs
3. **Multiple Marketplaces**: You can mix URLs from different Amazon countries in one run
4. **Account Limits**: Free accounts are limited to 2 products per run. Upgrade to a paid account for unlimited access.

### What Makes This Different

- **Reliable Extraction**: Built with advanced extraction technology for consistent results
- **Global Coverage**: Works with all Amazon marketplaces worldwide
- **Complete Data**: Extracts all available product information in one go
- **Fast Processing**: Concurrent processing for quick results
- **Error Handling**: Automatic retries and clear error reporting

### Need Help?

If you encounter any issues or have questions:

- Check that your URLs are valid Amazon product pages
- Review the output for any error messages
- Ensure you're using valid product URLs from supported Amazon marketplaces

For additional support, reach out to apify@vulnv.com

### Related Tools

Explore more data extraction tools:

- **[Website Crawler](https://apify.com/vulnv/website-crawler)** - Extract data from any website
- **[Article Extractor](https://apify.com/vulnv/article-extractor)** - Extract clean article content
- **[SEO Checker](https://apify.com/vulnv/seo-check)** - Analyze website SEO performance

✨ **Discover more tools** at [Vulnv's Apify Actors](https://apify.com/vulnv)

# Actor input Schema

## `product_urls` (type: `array`):

List of Amazon product URLs to scrape. Each URL should be a valid Amazon product page (containing /dp/ or /gp/product/).

## `max_concurrent_requests` (type: `integer`):

Maximum number of products to process simultaneously. Higher values speed up scraping but may consume more resources.

## Actor input object example

```json
{
  "product_urls": [
    "https://www.amazon.com/dp/B0C2C9NHZW",
    "https://www.amazon.co.uk/Finish-Dishwasher-Salt-Bag-2kg/dp/B0B4V1PW36"
  ],
  "max_concurrent_requests": 5
}
```

# 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 = {
    "product_urls": [
        "https://www.amazon.com/dp/B0C2C9NHZW",
        "https://www.amazon.co.uk/Finish-Dishwasher-Salt-Bag-2kg/dp/B0B4V1PW36"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("vulnv/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 = { "product_urls": [
        "https://www.amazon.com/dp/B0C2C9NHZW",
        "https://www.amazon.co.uk/Finish-Dishwasher-Salt-Bag-2kg/dp/B0B4V1PW36",
    ] }

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

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

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

```

## CLI example

```bash
echo '{
  "product_urls": [
    "https://www.amazon.com/dp/B0C2C9NHZW",
    "https://www.amazon.co.uk/Finish-Dishwasher-Salt-Bag-2kg/dp/B0B4V1PW36"
  ]
}' |
apify call vulnv/amazon-product-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,vulnv/amazon-product-scraper"
        }
    }
}

```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/Lo3MiIUSnkT48VHDm/builds/ZYIGTrBNY8Rh9SWNG/openapi.json
