VOOZH about

URL: https://apify.com/webdatalabs/amazon-reviews-scraper/api/python

โ‡ฑ Amazon Reviews Scraper & Extractor API in Python ยท Apify


๐Ÿ‘ Amazon Reviews Scraper & Extractor avatar

Amazon Reviews Scraper & Extractor

Pricing

Pay per event

Go to Apify Store

Amazon Reviews Scraper & Extractor

Extract Amazon customer reviews at scale for sentiment analysis, competitor research, and automation workflows. Get 10-15 reviews free (no cookies) or 1000+ reviews per product with authenticated cookies. API-ready JSON/CSV export for n8n, Zapier, Make.com, and AI/LLM analysis.

Pricing

Pay per event

Rating

1.3

(2)

Developer

๐Ÿ‘ WebDataLabs

WebDataLabs

Maintained by Community

Actor stats

4

Bookmarked

361

Total users

31

Monthly active users

2 months ago

Last modified

Share

You might also like

Amazon Reviews Scraper

web_wanderer/amazon-reviews-extractor

[UPDATED] Scrape Amazon reviews per product! Filter by stars, keywords, media & verified purchases. Extract global reviews (20+ regions). Export JSON/CSV. Perfect for market research & SEO.

Amazon Reviews Scraper

junglee/amazon-reviews-scraper

Amazon scraper to extract reviews from Amazon products. Scrape and download detailed reviews without using the Amazon API, including rating score, review description, reactions and images. Download your data as HTML table, JSON, CSV, Excel, XML.

9.9K

2.3

Amazon Product Scraper (Reviews & Ratings only)

rousing_fiddle/my-actor

Scrape from Amazon reviews and ratings

52

5.0

Amazon Review + Stats Scraper

wibuild.in/amazon-review-stats-scraper

Amazon Reviews + Stats Scraper collects reviews, ratings breakdown, review counts, and helpful-vote stats from Amazon product pages by ASIN. Export clean data to JSON/CSV for analysis, dashboards, or sentiment tracking.

Amazon Reviews Scraper

automation-lab/amazon-reviews-scraper

Scrape Amazon product reviews for review monitoring โ€” ratings, review text, verified purchase status, helpful votes, and review dates. Pair with Amazon price monitoring.

๐Ÿ‘ User avatar

Stas Persiianenko

623

Flipkart Reviews Scraper โญ

shahidirfan/flipkart-reviews-scraper

Instantly extract detailed product reviews, ratings, and customer feedback from Flipkart. Perfect for sentiment analysis, market research, and monitoring competitor products. Unlock valuable e-commerce insights and data to power your business growth today!

102

5.0

Amazon Reviews Scraper: Advanced & Lightning-Fast โšก

neatrat/amazon-reviews-scraper

No Login Needed - Updated July 2025. Get thousands of Amazon reviews in seconds! Powerful filters, rich data, instant export.

Amazon Reviews Scraper

axesso_data/amazon-reviews-scraper

Our Amazon Reviews Scraper extracts real-time reviews from Amazon, including ratings, titles, descriptions, user reactions, review dates, images and many more. Download the data in formats like JSON, CSV, Excel, XML, or HTML. Fast, accurate, and ideal for in-depth insights.

4.8K

4.6

Amazon Reviews Scraper with Advanced Filters

delicious_zebu/amazon-reviews-scraper-with-advanced-filters

Extract thousands of Amazon reviews from any ASIN or URL across 17 global marketplaces. Utilize advanced filters for ratings, keywords, and verified purchases to capture precise customer insights for competitor analysis and market research.

1.8K

3.5

Amazon Scraper

epctex/amazon-scraper

The fastest and most reliable Amazon scraper ever. Extract key data like reviews, prices, ASINs, without relying on Amazon's API. Tailor searches with specific URLs, keywords, and local postal codes for targeted insights. Download in various formats for easy analysis.

You can access the Amazon Reviews Scraper & Extractor programmatically from your own applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, youโ€™ll need an Apify account and your API token, found in Integrations settings in Apify Console.

๐Ÿ‘ Python

Python

๐Ÿ‘ JavaScript

JavaScript

CLI

๐Ÿ‘ OpenAPI

OpenAPI

HTTP

MCP

1from apify_client import ApifyClient
2
3# Initialize the ApifyClient with your Apify API token
4# Replace '<YOUR_API_TOKEN>' with your token.
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7# Prepare the Actor input
8run_input ={
9"productUrls":[{"url":"https://www.amazon.com/dp/B005EJH6Z4"}],
10"maxReviewsPerProduct":100,
11"amazonCookies":"",
12"verifiedOnly":False,
13"sortBy":"all",
14}
15
16# Run the Actor and wait for it to finish
17run = client.actor("webdatalabs/amazon-reviews-scraper").call(run_input=run_input)
18
19# Fetch and print Actor results from the run's dataset (if there are any)
20print("๐Ÿ’พ Check your data here: https://console.apify.com/storage/datasets/"+ run["defaultDatasetId"])
21for item in client.dataset(run["defaultDatasetId"]).iterate_items():
22print(item)
23
24# ๐Ÿ“š Want to learn more ๐Ÿ“–? Go to โ†’ https://docs.apify.com/api/client/python/docs/quick-start

Amazon Reviews Scraper & Extractor API in Python

The Apify API client for Python is the official library that allows you to use Amazon Reviews Scraper & Extractor API in Python, providing convenience functions and automatic retries on errors.

Install the apify-client

$pip install apify-client

Other API clients include:

Amazon Reviews Scraper & Extractor API in JavaScript

Amazon Reviews Scraper & Extractor API through CLI

Amazon Reviews Scraper & Extractor OpenAPI definition

Amazon Reviews Scraper & Extractor API