
Amazon Reviews Scraper
Pricing
$0.50 / 1,000 reviews

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.
5.0 (3)
Pricing
$0.50 / 1,000 reviews
14
Total users
244
Monthly users
127
Runs succeeded
>99%
Issues response
1.1 days
Last modified
4 hours ago
Improve Documentation on API Requests — Will Fail With Current Setup
Open
Default settings don't work with an HTTP call. Must use special settings. This is not exactly a problem but is not well documented on the front page. I had to dig into the API schema to figure this out. Hope it can help others and dev can fix please, thank you dev!
Most actors let you copy and paste the JSON from input into a standard POST request with JSON body without issue.
This actor returns the following when hitting the "Test Endpoint" button under the API menu...
{ "error": { "type": "invalid-input", "message": "Input is not valid: Field input.input is required" } }
To others with this issue and developer: Sending a POST request with JSON body will fail. At this time, the way to get a proper response is the following.
- Body Type: Raw
- Content Type: application/json
- Payload Format: (must send an array of objects UNDER the input)
{ "input": [ { "asin": "ABC123", "domainCode": "com", "sortBy": "recent", "maxPages": 1, "reviewerType": "all_reviews", "formatType": "current_format", "mediaType": "all_contents" } ] }