Amazon Reviews Scraper avatar
Amazon Reviews Scraper
Try for free

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

View all Actors
Amazon Reviews Scraper

Amazon Reviews Scraper

epctex/amazon-reviews-scraper
Try for free

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

Gain access to incredibly rapid, essential, and highly informative Amazon product review data. Pull out ratings, reviews, images, product specifics, and more. Retrieve reviews of any product, regardless of the country of origin. Unlimited and exceptionally fast.

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    "https://www.amazon.com/Clorox-30966-Concentrated-Regular-Bleach/dp/B07HXTYS1W/ref=sr_1_3?crid=ZT0PLQMYO4WP&keywords=clorox&qid=1702901115&sprefix=cl%2Caps%2C278&sr=8-3",
9    "https://www.amazon.com/Clorox-30966-Concentrated-Regular-Bleach/product-reviews/B07HXTYS1W/ref=cm_cr_dp_d_show_all_btm?ie=UTF8&reviewerType=all_reviews"
10  ],
11  "maxItems": 20,
12  "endPage": 1,
13  "extendOutputFunction": "($) => { return {} }",
14  "customMapFunction": "(object) => { return {...object} }",
15  "proxy": {
16    "useApifyProxy": true
17  }
18}
19EOF
20
21# Run the Actor using an HTTP API
22# See the full API reference at https://docs.apify.com/api/v2
23curl "https://api.apify.com/v2/acts/epctex~amazon-reviews-scraper/runs?token=$API_TOKEN" \
24  -X POST \
25  -d @input.json \
26  -H 'Content-Type: application/json'
Developer
Maintained by Community
Actor metrics
  • 14 monthly users
  • 2 stars
  • 100.0% runs succeeded
  • Created in Dec 2023
  • Modified 2 days ago