Amazon Bestsellers Scraper avatar
Amazon Bestsellers Scraper
Try for free

Pay $5.00 for 1,000 items

View all Actors
Amazon Bestsellers Scraper

Amazon Bestsellers Scraper

junglee/amazon-bestsellers
Try for free

Pay $5.00 for 1,000 items

Scrape the Amazon Best Sellers categories and extract details on top 100 most popular items on Amazon. Download product name, price, URL, and thumbnail image. Best used on .com, .co.uk, .de, .fr, .es, and .it domains. Download your data in various formats: HTML table, JSON, CSV, Excel, and more.

The code examples below show how to run the Actor and get its results. To run the code, you need to have an Apify account. Replace <YOUR_API_TOKEN> in the code with your API token, which you can find under Settings > Integrations in Apify Console. Learn mode

Node.js

Python

curl

1import { ApifyClient } from 'apify-client';
2
3// Initialize the ApifyClient with your Apify API token
4const client = new ApifyClient({
5    token: '<YOUR_API_TOKEN>',
6});
7
8// Prepare Actor input
9const input = {
10    "categoryUrls": [
11        "https://www.amazon.com/Best-Sellers-Electronics/zgbs/electronics/"
12    ],
13    "maxItemsPerStartUrl": 100,
14    "depthOfCrawl": 1,
15    "proxy": {
16        "useApifyProxy": true,
17        "apifyProxyGroups": [
18            "RESIDENTIAL"
19        ]
20    }
21};
22
23(async () => {
24    // Run the Actor and wait for it to finish
25    const run = await client.actor("junglee/amazon-bestsellers").call(input);
26
27    // Fetch and print Actor results from the run's dataset (if any)
28    console.log('Results from dataset');
29    const { items } = await client.dataset(run.defaultDatasetId).listItems();
30    items.forEach((item) => {
31        console.dir(item);
32    });
33})();
Developer
Maintained by Apify
Actor metrics
  • 43 monthly users
  • 99.4% runs succeeded
  • 4.6 days response time
  • Created in Mar 2023
  • Modified 1 day ago
Categories