Amazon Seller Scraper avatar
Amazon Seller Scraper
Try for free

7 days trial then $30.00/month - No credit card required now

View all Actors
Amazon Seller Scraper

Amazon Seller Scraper

junglee/amazon-seller-scraper
Try for free

7 days trial then $30.00/month - No credit card required now

Amazon scraper to extract seller information. You can scrape either categories or specific products.

Do you want to learn more about this Actor?

Get a demo

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 more

1# Set API token
2API_TOKEN=<YOUR_API_TOKEN>
3
4# Prepare Actor input
5cat > input.json <<'EOF'
6{
7  "startUrls": [
8    {
9      "url": "https://www.amazon.com/s?k=keyboard"
10    }
11  ],
12  "maxItemsPerStartUrl": 10,
13  "proxyConfiguration": {
14    "useApifyProxy": true,
15    "apifyProxyGroups": [
16      "RESIDENTIAL"
17    ]
18  }
19}
20EOF
21
22# Run the Actor using an HTTP API
23# See the full API reference at https://docs.apify.com/api/v2
24curl "https://api.apify.com/v2/acts/junglee~amazon-seller-scraper/runs?token=$API_TOKEN" \
25  -X POST \
26  -d @input.json \
27  -H 'Content-Type: application/json'
Developer
Maintained by Apify
Actor metrics
  • 29 monthly users
  • 17 stars
  • 98.4% runs succeeded
  • 7.9 days response time
  • Created in Nov 2022
  • Modified 2 days ago