# Amazon Price Tracker — Multi-Marketplace Prices & Alerts (`apikiy/amazon-price-tracker`) Actor

Track product prices on Amazon with alerts and price history

- **URL**: https://apify.com/apikiy/amazon-price-tracker.md
- **Developed by:** [Julien ApiKiy](https://apify.com/apikiy) (community)
- **Categories:** E-commerce
- **Stats:** 2 total users, 0 monthly users, 80.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.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 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 European Price Tracker

Track product prices, ratings, availability, and deals across 7 European Amazon marketplaces with automated browser scraping. Perfect for e-commerce price comparison, deal hunting, and competitive intelligence.

### Features

- **7 European Marketplaces**: FR, DE, ES, IT, UK, NL, PL — monitor prices across all major Amazon EU sites
- **Multi-ASIN Tracking**: Track unlimited product ASINs in a single run
- **Keyword Search Mode**: Search Amazon by keyword and extract top results with prices
- **Smart Price Parser**: Handles EU format (29,99), US format ($50,000), and K notation (35k)
- **Discount Detection**: Automatically detects and calculates discount percentages
- **Currency Detection**: EUR, GBP, PLN — correct currency per marketplace
- **Seller Information**: Extract seller name from product pages
- **Ratings & Reviews**: Star rating and review count extraction
- **Stock Monitoring**: Availability status on every product
- **Anti-Detection**: Random delays, user agent rotation, stealth scripts, session management
- **Cross-Marketplace Comparison**: Compare the same ASIN across different countries

### Use Cases

- **Price comparison** across European Amazon marketplaces
- **Deal hunting** — find the lowest price for any product
- **Competitive intelligence** — monitor competitor pricing
- **Price history tracking** — run periodically to build price datasets
- **Stock alerts** — monitor availability across regions
- **E-commerce arbitrage** — find price differences between countries

### Input

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `asins` | `string[]` | Yes\* | Amazon ASINs to track (or full URLs) |
| `searchKeywords` | `string[]` | Yes\* | Keywords to search (\*at least one of asins or searchKeywords required) |
| `marketplaces` | `string[]` | No | Marketplaces: FR, DE, ES, IT, UK, NL, PL (default: all) |
| `maxSearchResults` | `number` | No | Max results per keyword (default: 10, max: 50) |
| `maxConcurrency` | `number` | No | Concurrent browsers (default: 3) |
| `delayMin` | `number` | No | Min delay ms between requests (default: 2000) |
| `delayMax` | `number` | No | Max delay ms between requests (default: 5000) |

### Output

Each result includes:

```json
{
  "asin": "B08N5WRWNW",
  "title": "Product Name",
  "marketplace": "DE",
  "price": 29.99,
  "currency": "EUR",
  "originalPrice": 39.99,
  "discountPercentage": 25,
  "rating": 4.5,
  "reviewCount": 1234,
  "seller": "Amazon.de",
  "inStock": true,
  "url": "https://www.amazon.de/dp/B08N5WRWNW",
  "scrapedAt": "2025-01-15T10:30:00.000Z"
}
```

### 💰 Pricing

Pay-per-use, no monthly fees:

| | Price |
|---|---|
| **Actor start** | $0.01 |
| **Per result** | $0.01 |

> 💡 Example: A run returning 500 results costs **$5.01** total ($0.01 start + 500 × $0.01). Runs with 0 results cost only **$0.01**.

### Notes

- Use **Apify residential proxies** to avoid Amazon blocks
- Respects rate limits with configurable delays (default 2-5s)
- Supports both direct ASIN tracking and keyword search discovery
- Results are stored in Apify Dataset — export as JSON, CSV, or Excel

### Keywords

Amazon, price tracker, Europe, ASIN, e-commerce, price comparison, deals, Amazon France, Amazon Germany, Amazon Spain, Amazon Italy, Amazon UK, Amazon Netherlands, Amazon Poland, product tracker, price monitor, European Amazon, shopping, deals finder, price alert

# Actor input Schema

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

Product ASINs to track (e.g., B08N5WRWNW)

## `searchKeywords` (type: `array`):

Keywords to search for on Amazon

## `maxSearchResults` (type: `integer`):

Maximum number of search results per keyword

## `marketplaces` (type: `array`):

Amazon marketplaces to search

## `webhookUrl` (type: `string`):

URL to send price alerts to (POST request)

## `alerts` (type: `string`):

Alert when price drops below threshold (JSON format: \[{"email":"...","maxPrice":100,"keywords":"..."}])

## `maxConcurrency` (type: `integer`):

Max Concurrency

## `maxRetries` (type: `integer`):

Max Retries

## `delayMin` (type: `integer`):

Min Delay (ms)

## `delayMax` (type: `integer`):

Max Delay (ms)

## `debugMode` (type: `boolean`):

Debug Mode

## Actor input object example

```json
{
  "maxSearchResults": 10,
  "maxConcurrency": 2,
  "maxRetries": 3,
  "delayMin": 1000,
  "delayMax": 5000,
  "debugMode": false
}
```

# Actor output Schema

## `results` (type: `string`):

No description

# 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 = {};

// Run the Actor and wait for it to finish
const run = await client.actor("apikiy/amazon-price-tracker").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 = {}

# Run the Actor and wait for it to finish
run = client.actor("apikiy/amazon-price-tracker").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 '{}' |
apify call apikiy/amazon-price-tracker --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

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