Amazon Reviews Scraper avatar
Amazon Reviews Scraper

Pricing

$0.50 / 1,000 reviews

Go to Store
Amazon Reviews Scraper

Amazon Reviews Scraper

Developed by

Axesso - Data Service

Axesso - Data Service

Maintained by Community

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

WR

Improve Documentation on API Requests — Will Fail With Current Setup

Open

wrkless opened this issue
3 days ago

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.

  1. Body Type: Raw
  2. Content Type: application/json
  3. 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" } ] }