Review Comments
GET /request
The Review Comments Parameters are applicable when making a request with type=review_comments to retrieve customer Review Comments for a single customer review on Amazon - the review is specified using the review_id , asin and amazon_domain parameters. The parameters should be appended as querystring parameters to the Product Data API GET HTTP request.
Review comments are retrieved from the customer reviews page for a single customer review for a single product on Amazon.
Retrieving Review IDs To make a type=review_comments request you must provide a review_id . Review IDs are retrieved by making type=reviews requests to retrieve reviews for a given product. See the Reviews Parameters documentation for more information.
Review Comments Count Rainforest can retrieve up to 100 review comments per request. For tracking new comments the most common approach is to run a type=review_comments request with sort_by=most_recent set, to ensure you always retrieve the latest review comments.
For example, to request review comments, sorted by most_recent , for the Review ID RKXA6MFEZGGSY of ASIN B07H9J1YXN on amazon.com the request would be:
The following parameters are available for all requests made when type=review_comments .
Parameter | Required | Description |
---|---|---|
amazon_domain | required | The Amazon domain to retrieve Review Comments for the Review ID specified in the review_id parameter and ASIN specified in the asin parameter. For a full list of supported Amazon domains see Supported Amazon Domains . Used in combination with the asin and review_id parameters. |
asin | required | The Amazon ASIN to retrieve Review Comments for. Used in combination with the amazon_domain and review_id parameters. |
review_id | required | The Review ID, as returned by a type=reviews request, to retrieve Review Comments for. Used in combination with the amazon_domain and asin parameters. |
sort_by | optional | An optional sort order for the returned review comments. Valid values are most_recent and oldest |
Next Steps Review Comments Results