# Amazon Deals Scraper – Price Drops, Bestsellers & ASINs (`robinworld/amazon-deals-bestsellers-radar`) Actor

Scrapes real-time Amazon gold box deals, price drops, discounts, ASINs, ratings, and bestsellers for e-commerce arbitrage sellers and affiliate marketers.

- **URL**: https://apify.com/robinworld/amazon-deals-bestsellers-radar.md
- **Developed by:** [Robin world](https://apify.com/robinworld) (community)
- **Categories:**
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $2.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/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 Deals & Bestsellers Radar — Real-Time Price Drop Scraper

Extract real-time **Amazon Lightning Deals, Best Seller leaderboards, price drops, discount percentages, star ratings, and Prime eligibility** across multiple Amazon regional marketplaces (**US, Japan, UK, Germany, and Canada**).

***

### 🌟 Key Features

- ⚡ **Real-Time Discount Calculation**: Automatically calculates discount percentages (`discount_percent`) by comparing current sale price vs. strike-through list price.
- 🌍 **Multi-Regional Support**: Scrape from `amazon.com` (US), `amazon.co.jp` (Japan), `amazon.co.uk` (UK), `amazon.de` (Germany), or `amazon.ca` (Canada).
- 🎯 **3 Flexible Scraping Modes**:
  1. **Today's Deals**: High-discount items with custom minimum discount threshold (e.g. >= 20% off).
  2. **Bestsellers**: Category-specific top 100 leaderboards.
  3. **Keyword Search Deals**: Find deals matching specific search queries (e.g. "mechanical keyboard", "wireless earbuds", "4k monitor").
- 🛡️ **Built-in Anti-Bot & Proxy Handling**: Pre-configured with modern browser headers, header rotation, and seamless integration with Apify Smart Residential Proxies.
- 📦 **Export Anywhere**: Download clean, structured datasets in **JSON, CSV, Excel, XML, or connect directly via API / Webhooks to Zapier, Make, or your database**.

***

### 💰 Pay-Per-Event Pricing

This Actor uses the official **Pay-per-Event** pricing model:

- **Only $0.0015 per extracted product record** (just **$1.50 for 1,000 verified product deals**).
- No recurring flat subscriptions required. Pay only for the exact amount of data you extract.

***

### 📥 Input Parameters

| Field | Type | Description | Default |
| :--- | :---: | :--- | :---: |
| `mode` | String | `deals`, `bestsellers`, or `search` | `deals` |
| `country` | String | `com` (US), `co.jp` (JP), `co.uk` (UK), `de` (DE), `ca` (CA) | `com` |
| `keyword` | String | Search query for keyword mode | `electronics` |
| `category` | String | Category slug (`electronics`, `computers`, `video-games`, etc.) | `electronics` |
| `min_discount_percent` | Number | Filter items with at least this discount (e.g. `20` for >= 20% off) | `10` |
| `max_items` | Number | Maximum number of product deals to extract | `50` |
| `proxy_configuration` | Object | Apify proxy configuration (Recommended: Apify Proxy) | `{ "useApifyProxy": true }` |

***

### 📤 Sample Output (JSON)

```json
[
  {
    "asin": "B0B91DYK2B",
    "title": "Anker Soundcore Space A40 Auto-Adjustable Active Noise Cancelling Wireless Earbuds",
    "current_price": 49.99,
    "original_price": 99.99,
    "currency": "USD",
    "discount_percent": 50,
    "rating": 4.5,
    "review_count": 14280,
    "is_prime": true,
    "badge": "Limited time deal",
    "product_url": "https://www.amazon.com/dp/B0B91DYK2B",
    "image_url": "https://m.media-amazon.com/images/I/51+6qQY4FPL._AC_SL1500_.jpg",
    "store_country": "com",
    "scraped_at": "2026-09-08T03:00:00.000Z"
  }
]
```

***

### 🚀 How to Use & Automate

1. Click **Try for free** or **Run**.
2. Set your desired country, category, and minimum discount threshold.
3. Click **Start** to run the Actor on the Apify cloud.
4. Download your dataset in **CSV/Excel** or set up an API schedule to receive daily price drop alerts!

# Actor input Schema

## `mode` (type: `string`):

Choose whether to scrape Today's Deals, Bestsellers, or Search Keywords.

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

Select the Amazon regional marketplace.

## `keyword` (type: `string`):

Specific search query when mode is set to 'Keyword Search Deals' (e.g., 'wireless earbuds', 'mechanical keyboard', 'rtx 4070').

## `category` (type: `string`):

Category slug to filter deals.

## `min_discount_percent` (type: `integer`):

Filter products that have at least this discount percentage (e.g., 20 for >= 20% off).

## `max_items` (type: `integer`):

Total number of product records to extract and return.

## `proxy_configuration` (type: `object`):

Apify smart proxy configuration to bypass Amazon anti-bot WAF.

## Actor input object example

```json
{
  "mode": "deals",
  "country": "com",
  "keyword": "electronics",
  "category": "electronics",
  "min_discount_percent": 10,
  "max_items": 50,
  "proxy_configuration": {
    "useApifyProxy": true
  }
}
```

# Actor output Schema

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

List of scraped Amazon deals with discount percentages and pricing

# 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("robinworld/amazon-deals-bestsellers-radar").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("robinworld/amazon-deals-bestsellers-radar").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 '{}' |
apify call robinworld/amazon-deals-bestsellers-radar --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,robinworld/amazon-deals-bestsellers-radar"
        }
    }
}

```

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/gtFMj7KRTcMfW3sOM/builds/LOiH50H7S0oK4SBOZ/openapi.json
