This action is ideal for extracting customer reviews for any product available on Amazon. It allows you to gather insights and feedback from users who have purchased and reviewed the product.
Input should contain a valid Amazon product URL:
https://www.amazon.com/PRODUCT_PERMALINK/product-reviews/PRODUCT_ID/.
Parameters
Maximum number of reviews to extract. Can go up to 20,000.
Output Fields
The extracted data will include the following fields:
The URL of the reviewer’s Amazon profile
The content of the review
The URL of the reviewer’s profile avatar
The name of the review author
The date the review was posted
Indicates if the purchase was verified
The number of helpful votes the review received
Below is the JSON schema for the output fields:
{
"amazon_profile_url" : "string" ,
"content" : "string" ,
"profile_avatar" : "string" ,
"review_author" : "string" ,
"review_date" : "string" ,
"review_title" : "string" ,
"verified_purchase" : "boolean" ,
"votes" : "integer"
}
Ensure that the Amazon product URL is correctly formatted to successfully
extract the reviews.