# Amazon Best Seller Product Scraper (`data_ops_main/amazon-bsr-product-scraper`) Actor

Scrapes Amazon Best Sellers, New Releases, Most Gifted, Most Wished For, and Movers & Shakers product lists across every department and subcategory.

- **URL**: https://apify.com/data\_ops\_main/amazon-bsr-product-scraper.md
- **Developed by:** [yourlocalhost](https://apify.com/data_ops_main) (community)
- **Categories:** E-commerce, Automation, Developer tools
- **Stats:** 6 total users, 2 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.00 / 1,000 amazon bsr actors

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 Best Sellers Scraper 🏆 - BSR, New Releases & Movers

**Scrape Amazon Best Sellers Rank (BSR) data at scale.** This Amazon best sellers scraper extracts every product from Amazon's **Best Sellers**, **New Releases**, **Most Gifted**, **Most Wished For**, and **Movers & Shakers** lists - across **every department and subcategory** - and returns clean, structured JSON, CSV, or Excel.

No code, no browser fingerprinting headaches, no maintenance. Point it at any Amazon marketplace (`.com`, `.co.uk`, `.de`, …), press **Start**, and get a ranked feed of trending products in minutes.

> 🎯 **Perfect for** product researchers, Amazon FBA / dropshipping sellers, e-commerce analysts, and price-monitoring pipelines who need fresh Amazon ranking data on demand.

---

### ✨ What you get

- ✅ **All 5 Amazon ranking lists** - Best Sellers, New Releases, Most Gifted, Most Wished For, Movers & Shakers
- ✅ **Full category coverage** - automatically walks every department and subcategory (or limit it to keep runs cheap)
- ✅ **Clean, deduplicated data** - high-resolution product images, prices, real BSR rank, and canonical product URLs (tracking params stripped)
- ✅ **Any Amazon marketplace** - works on `amazon.com`, `amazon.co.uk`, `amazon.de`, `amazon.fr`, and more
- ✅ **Export anywhere** - download as JSON, CSV, Excel, or pull via the [Apify API](https://docs.apify.com/api/v2) into your own app
- ✅ **Reliable by design** - auto-retries, anti-blocking, and lazy-load handling built in

#### 📊 Data extracted per product

| Field | Description |
|-------|-------------|
| `productName` | Full product title |
| `productPrice` | Displayed price (e.g. `"£29.99"`) |
| `productImage` | High-resolution product image URL |
| `productLink` | Canonical product URL (`/dp/ASIN`) |
| `productRank` | Best Sellers Rank position |
| `listType` | Source list (`Best-Sellers`, `new-releases`, …) |
| `department` | Top-level Amazon department |
| `subcategory` | Subcategory within the department |
| `scrapedAt` | ISO 8601 timestamp of extraction |

---

### 🚀 How to use the Amazon Best Sellers Scraper

1. Click **Try for free** at the top of this page (a free [Apify account](https://console.apify.com/sign-up) takes 30 seconds - no credit card needed).
2. Choose your **Amazon domain** and the **lists/categories** you want.
3. Optionally cap `maxSubcategoriesPerDepartment` and `maxProductsPerRun` to control cost and run time.
4. Press **Start** ▶️
5. Download your results from the **Output** tab as JSON, CSV, or Excel - or grab them via API.

That's it. No proxies to configure, no scripts to write.

---

### 💸 Pricing

This Actor runs on Apify's **pay-as-you-go** platform. You only pay for what you use, and **every new Apify account includes free monthly usage credits** - enough to test this scraper and pull your first batches of data at **no cost**.

- 🆓 **Free tier:** Start scraping immediately with your monthly Apify free credits - no credit card required.
- ⚡ **Scale up when ready:** Need full-category runs, daily refreshes, or large exports? Upgrade your Apify plan and the same Actor scales with you.

💡 **Tip to keep runs cheap:** set `maxSubcategoriesPerDepartment` and `maxProductsPerRun` while testing, then remove the limits once you're happy with the output. Enabling **Residential proxies** improves success rates for large cloud runs (recommended - Amazon blocks aggressively).

---

### 🧾 Input

All fields are optional - run it with the defaults to scrape every UK Best Sellers list.

| Field | Type | Default | Description |
|-------|------|---------|-------------|
| `amazonDomain` | string | `https://www.amazon.co.uk` | Amazon marketplace to scrape |
| `categories` | array | All 5 lists | Which lists to scrape: `Best-Sellers`, `new-releases`, `most-gifted`, `most-wished-for`, `movers-and-shakers` |
| `maxSubcategoriesPerDepartment` | integer | `0` (unlimited) | Cap subcategories per department |
| `maxProductsPerRun` | integer | `0` (unlimited) | Cap total products scraped |
| `proxyConfiguration` | object | No proxy | Proxy settings - **residential recommended** for large runs |

#### Example input

```json
{
  "amazonDomain": "https://www.amazon.co.uk",
  "categories": ["Best-Sellers", "movers-and-shakers"],
  "maxSubcategoriesPerDepartment": 5,
  "maxProductsPerRun": 100,
  "proxyConfiguration": { "useApifyProxy": true, "apifyProxyGroups": ["RESIDENTIAL"] }
}
````

***

### 📤 Output

Each product is a separate dataset record. Example:

```json
{
  "productName": "Anker USB-C Fast Charger 67W",
  "productPrice": "£29.99",
  "productImage": "https://m.media-amazon.com/images/I/61example._AC_UL600_.jpg",
  "productLink": "https://www.amazon.co.uk/dp/B0EXAMPLE",
  "productRank": 1,
  "listType": "Best-Sellers",
  "department": "Electronics",
  "subcategory": "Chargers",
  "scrapedAt": "2026-06-07T14:30:00.000Z"
}
```

Export to **JSON, CSV, Excel, XML, or RSS**, or fetch programmatically via the [Apify Dataset API](https://docs.apify.com/api/v2/dataset-items-get).

***

### 💡 Use cases

- **Product research & sourcing** - spot trending products and fast movers before competitors do (Amazon FBA, dropshipping, retail arbitrage).
- **Price monitoring** - track prices on top-ranked products over time by scheduling daily runs.
- **Market & category analysis** - measure which categories and brands dominate the rankings.
- **Analytics pipelines** - feed structured JSON straight into databases, dashboards, or scoring models via API.

***

### 🗓️ Automate it

Want fresh Best Sellers data every morning? Use Apify **[Schedules](https://docs.apify.com/platform/schedules)** to run this Actor hourly, daily, or weekly, and have results pushed to your storage, a webhook, Google Sheets, or your own API automatically.

***

### ❓ FAQ

**Is scraping Amazon legal?**
Scraping publicly available data is generally legal. This Actor only collects public product listings - no personal data and nothing behind a login. You are responsible for complying with Amazon's Terms of Service and applicable laws in your jurisdiction. Use the data responsibly.

**Why are some prices `null`?**
Amazon doesn't show a price on every ranking card (e.g. some "Movers & Shakers" entries). When a price isn't present on the list page, the field is returned as `null` rather than guessed.

**Which Amazon marketplaces are supported?**
Any Amazon domain - just set `amazonDomain` (e.g. `https://www.amazon.com`, `https://www.amazon.de`).

**My run returned few results or got blocked.**
Amazon blocks data-center traffic aggressively. Enable **Residential proxies** in `proxyConfiguration` for large or frequent runs.

**Can I get more data per product (reviews, full specs)?**
This Actor focuses on ranking-list data. Pair it with a dedicated [Amazon Product Detail Scraper](https://apify.com/store?search=amazon%20product) to enrich each `productLink`.

***

### 🔗 Related Actors

Browse more e-commerce scrapers in the **[Apify Store](https://apify.com/store?search=amazon)**:

- Amazon Product Scraper - full product details, specs, and reviews
- Amazon Reviews Scraper - collect and analyze customer reviews
- Amazon Price Tracker - monitor price changes over time

***

### 🛟 Support

Found a bug or need a new feature? **Open an issue on the Actor's [Issues tab](https://docs.apify.com/platform/actors/development/automated-tests)** or contact us through the Actor page - we actively maintain this scraper and respond quickly.

***

### 🛠️ For developers

Run locally:

```bash
apify run
```

Deploy your own copy:

```bash
apify login
apify push
```

Built with the [Apify SDK](https://docs.apify.com/sdk/js/), [Crawlee](https://crawlee.dev), and [Playwright](https://playwright.dev/) for reliable rendering of Amazon's dynamic ranking pages.

# Actor input Schema

## `amazonDomain` (type: `string`):

Amazon marketplace (domain) to scrape, e.g. https://www.amazon.com, https://www.amazon.co.uk, https://www.amazon.de.

## `categories` (type: `array`):

Which Amazon ranking lists to scrape: Best-Sellers, new-releases, most-gifted, most-wished-for, movers-and-shakers. Leave empty to scrape all five.

## `maxSubcategoriesPerDepartment` (type: `integer`):

Limit subcategories scraped per department to control run time and cost (0 = unlimited).

## `maxProductsPerRun` (type: `integer`):

Cap the total number of products scraped across all lists to control run time and cost (0 = unlimited).

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

Proxy settings. Amazon blocks scrapers aggressively - residential proxies recommended.

## Actor input object example

```json
{
  "amazonDomain": "https://www.amazon.co.uk",
  "categories": [
    "Best-Sellers"
  ],
  "maxSubcategoriesPerDepartment": 0,
  "maxProductsPerRun": 0,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

# 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 = {
    "categories": [
        "Best-Sellers"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("data_ops_main/amazon-bsr-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 = { "categories": ["Best-Sellers"] }

# Run the Actor and wait for it to finish
run = client.actor("data_ops_main/amazon-bsr-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 '{
  "categories": [
    "Best-Sellers"
  ]
}' |
apify call data_ops_main/amazon-bsr-product-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Amazon Best Seller Product Scraper",
        "description": "Scrapes Amazon Best Sellers, New Releases, Most Gifted, Most Wished For, and Movers & Shakers product lists across every department and subcategory.",
        "version": "1.0",
        "x-build-id": "4LYG87nJo6otL7szv"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/data_ops_main~amazon-bsr-product-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-data_ops_main-amazon-bsr-product-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/data_ops_main~amazon-bsr-product-scraper/runs": {
            "post": {
                "operationId": "runs-sync-data_ops_main-amazon-bsr-product-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/data_ops_main~amazon-bsr-product-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-data_ops_main-amazon-bsr-product-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": {
                    "amazonDomain": {
                        "title": "Amazon Marketplace",
                        "type": "string",
                        "description": "Amazon marketplace (domain) to scrape, e.g. https://www.amazon.com, https://www.amazon.co.uk, https://www.amazon.de.",
                        "default": "https://www.amazon.co.uk"
                    },
                    "categories": {
                        "title": "Best Seller Lists to Scrape",
                        "type": "array",
                        "description": "Which Amazon ranking lists to scrape: Best-Sellers, new-releases, most-gifted, most-wished-for, movers-and-shakers. Leave empty to scrape all five.",
                        "default": [
                            "Best-Sellers",
                            "new-releases",
                            "most-gifted",
                            "most-wished-for",
                            "movers-and-shakers"
                        ],
                        "items": {
                            "type": "string"
                        }
                    },
                    "maxSubcategoriesPerDepartment": {
                        "title": "Max Subcategories per Department",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Limit subcategories scraped per department to control run time and cost (0 = unlimited).",
                        "default": 0
                    },
                    "maxProductsPerRun": {
                        "title": "Max Products per Run",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Cap the total number of products scraped across all lists to control run time and cost (0 = unlimited).",
                        "default": 0
                    },
                    "proxyConfiguration": {
                        "title": "Proxy Configuration",
                        "type": "object",
                        "description": "Proxy settings. Amazon blocks scrapers aggressively - residential proxies recommended.",
                        "default": {
                            "useApifyProxy": false
                        }
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
