# 🚀 Amazon Best Sellers Scraper · 5,000 Free Items/Month (`omkar-cloud/amazon-bestsellers-scraper`) Actor

Amazon Best Sellers Scraper gets you Amazon data ⚡ fast, 🎯 100% accurate and 🔍 ridiculously detailed — top 100 Best Sellers, New Releases & Movers in any category. 💰 $1 per 1,000 items, no start fee. Scrape your first 5,000 items free every month 🚀

- **URL**: https://apify.com/omkar-cloud/amazon-bestsellers-scraper.md
- **Developed by:** [Omkar Cloud](https://apify.com/omkar-cloud) (community)
- **Categories:** E-commerce, Lead generation, Developer tools
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.00 / 1,000 items

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?

An Actor is a serverless cloud program that runs on the Apify platform. It has two run modes.
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.

Apify vocabulary and the platform model are defined once, in the agent quickstart at https://apify.com/agents.md.

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

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For examples already wired to this Actor's own input schema, see the [API](#api) section below.

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).

# README

## Amazon Best Sellers Scraper

Amazon Best Sellers Scraper by Omkar Cloud gets you 🎯 accurate, 🔍 detailed Amazon data.

Amazon uses Akamai bot protection to stop you from getting its data. Amazon Best Sellers Scraper beats it — no proxies, no captchas, no blocks — and reads Amazon live on every run, across 23 Amazon marketplaces, so you can successfully complete your project.

**$1 per 1,000 items.** And with Apify's free plan you get $5 of credit every month, so your first **~5,000 items each month are free**.

This is an excellent Actor made by Omkar Cloud, which is Rated Excellent — [4.7 based on 30 reviews on Trustpilot](https://www.trustpilot.com/review/omkar.cloud).

👉 [**Try Amazon Best Sellers Scraper free**](https://apify.com/omkar-cloud/amazon-bestsellers-scraper) — your first ~5,000 items are Free.

### Why Amazon Best Sellers Scraper

Most other Amazon scrapers fail you in one of four ways:

- 🧩 **Low-detail data** — a few fields per row, never the full picture
- 🗄️ **Inaccurate, cached, stale data** — yesterday's prices are useless
- 💸 **Pay more to get the same data** — $5 per 1,000 rows elsewhere
- 🪦 **Works today, breaks next month** — nobody maintains it

Amazon Best Sellers Scraper reads Amazon live, is priced honestly, and actively maintained.

### Example: #2 in Electronics

```json
{
  "category": "electronics",
  "list_type": "best_sellers",
  "rank": 2,
  "asin": "B0DCH8VDXF",
  "title": "Apple EarPods Headphones with USB-C Plug, Wired Ear Buds with Built-in Remote to Control Music, Phone Calls, and Volume",
  "link": "https://www.amazon.com/dp/B0DCH8VDXF",
  "image": "https://images-na.ssl-images-amazon.com/images/I/513OSdW4elL.jpg",
  "rating": {
    "average": 4.5,
    "count": 18166
  },
  "price": {
    "amount": 19.0,
    "currency": "USD"
  },
  "rank_change_percent": null
}
```

*Trimmed for readability.* Every row also carries `list_title`, `country`, `price_text`, `previous_rank` and `sales_rank` (Movers & Shakers).

### Get Started with 5,000 Free Items

1. [Hit **Try for Free Button**](https://apify.com/omkar-cloud/amazon-bestsellers-scraper) — the input is pre-filled with Electronics and Toys & Games.
2. Enjoy your data 😎.

### Pricing

High value, Low price.

| What | Price | What you get |
|---|---|---|
| **Items** | **$1 per 1,000** | A ranked product — rank, title, price, rating, reviews count, image and link |

No start fee, one flat price on every plan — you pay only for the rows you get.

💡 Apify's free plan includes $5 of credit every month — about **5,000 free items, every month**.

👉 [**Scrape your first 5,000 items free**](https://apify.com/omkar-cloud/amazon-bestsellers-scraper)

### Run It from Code

Grab your API token from [Integrations Settings here](https://console.apify.com/settings/integrations) and replace `<YOUR_API_TOKEN>` below.

**Python** (`pip install apify-client`)

```python
from apify_client import ApifyClient

client = ApifyClient("<YOUR_API_TOKEN>")
run = client.actor("omkar-cloud/amazon-bestsellers-scraper").call(run_input={
    "categories": ["electronics", "toys-and-games"],
    "listType": "best_sellers",
})
for row in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(row["rank"], row["title"])
```

**Node.js** (`npm install apify-client`)

```javascript
import { ApifyClient } from 'apify-client';

const client = new ApifyClient({ token: '<YOUR_API_TOKEN>' });
const run = await client.actor('omkar-cloud/amazon-bestsellers-scraper').call({
    categories: ['electronics'],
    listType: 'new_releases',
});
const { items } = await client.dataset(run.defaultDatasetId).listItems();
console.log(items);
```

### FAQ

#### What can I put in the input?

Best sellers category paths like `electronics`, `toys-and-games` or `electronics/172541`, or any Amazon best sellers link. Pick the list: Best Sellers, New Releases, Movers & Shakers, Most Wished For or Most Gifted.

#### How do I find category paths?

Open any Amazon best sellers page and copy the link — or use the path after `/zgbs/` or `/gp/bestsellers/` in it. Category names differ per marketplace (on amazon.de, electronics is `ce-de`).

#### What does it cost?

$0.001 per item — $1 per 1,000 — flat on every plan, with no start fee. A full top-100 list costs $0.10. Apify's free plan gives you $5 of credit every month — about 5,000 items free.

#### Which Amazon marketplaces are supported?

23 of them — United States, Canada, Mexico, Brazil, United Kingdom, Ireland, Germany, France, Italy, Spain, Netherlands, Belgium, Sweden, Poland, Turkey, UAE, Saudi Arabia, Egypt, India, Japan, Singapore, Australia and South Africa. Prices come back in each marketplace's own currency.

#### Is it legal to scrape Amazon?

The Actor collects only the public data Amazon shows any visitor — no login, no private data. Please review Amazon's terms of use and make sure your use complies with the law of your jurisdiction, including data-protection law.

### 💬 Have Questions? We Have Answers.

You're a business owner — we know how hard completing a project can be. So we offer full support: just message us and we'll reply ✅ with a solution within 1 working day.

[![Message Us on WhatsApp](https://raw.githubusercontent.com/omkarcloud/assets/master/images/whatsapp-us.png)](https://api.whatsapp.com/send?phone=918178804274\&text=I%20need%20help%20with%20using%20the%20Amazon%20Best%20Sellers%20Scraper%20Actor.)

[![Ask Us on Email](https://raw.githubusercontent.com/omkarcloud/assets/master/images/ask-on-email.png)](mailto:happy.to.help@omkar.cloud?subject=Help%20with%20Amazon%20Best%20Sellers%20Scraper%20Actor\&body=I%20need%20help%20with%20using%20the%20Amazon%20Best%20Sellers%20Scraper%20Actor.)

You are important to us — just message us and we will solve your problem ✅ within 1 working day. 🩷 Pinky Promise 🤙!

### Popular Actors by Omkar Cloud

- [**Amazon Scraper**](https://apify.com/omkar-cloud/amazon-scraper) — scrape products from any Amazon search, category or ASIN, $2 per 1,000 products
- [**Amazon Seller Scraper**](https://apify.com/omkar-cloud/amazon-seller-scraper) — seller profiles, feedback and product catalogs from Amazon, $2 per 1,000 records
- [**Website Email Contact Scraper**](https://apify.com/omkar-cloud/website-email-contact-scraper) — emails, phones & socials from any website
- [**IMDb Scraper**](https://apify.com/omkar-cloud/imdb-scraper) — IMDb titles, charts, cast, ratings & box office
- [**Instagram Scraper**](https://apify.com/omkar-cloud/instagram-scraper) — posts & reels from any user, hashtag, keyword or place

# Actor input Schema

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

Best sellers category paths (`electronics`, `toys-and-games`, `electronics/172541`) or any Amazon best sellers link. Leave empty for all departments.

## `listType` (type: `string`):

Which Amazon ranking list.

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

Which Amazon store to scrape. Prices come back in its own currency.

## `maxItemsPerCategory` (type: `integer`):

How many ranks to scrape per category (Amazon lists the top 100).

## Actor input object example

```json
{
  "categories": [
    "electronics",
    "toys-and-games"
  ],
  "listType": "best_sellers",
  "country": "US",
  "maxItemsPerCategory": 100
}
```

# 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 = {
    "categories": [
        "electronics",
        "toys-and-games"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("omkar-cloud/amazon-bestsellers-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": [
        "electronics",
        "toys-and-games",
    ] }

# Run the Actor and wait for it to finish
run = client.actor("omkar-cloud/amazon-bestsellers-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 '{
  "categories": [
    "electronics",
    "toys-and-games"
  ]
}' |
apify call omkar-cloud/amazon-bestsellers-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,omkar-cloud/amazon-bestsellers-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/bjz7lqLdmU3FSr14E/builds/SQRo1esArvHNOk1ww/openapi.json
