Core APIs
...
Results
Customer Feedback

Reviews v2

2min

Reviews Results

When you make a request to the Rainforest API with the type parameter set to type=reviews_v2, along with the asin and amazon_domain parameters, the API will retrieve the most recent reviews from the specified product page.

Reviews are retrieved from the product page on Amazon.

Document image


An example of the JSON object returned from a Reviews request is shown below:

JSON


Rainforest API returns the following properties for reviews_v2 / most_recent reviews on the product page:

Property

Type

Description

reviews_header

string

The string of the most_recent reviews header

reviews

array

An array of Review objects, containing each of the Customer Reviews shown on the Customer Reviews page. The Review object has the following properties:

  • id
  • string
  • The unique, Amazon-assigned, ID of the customer review. This can be used by your app to flag whether you have previously processed this review on a prior request.



  • title
  • string
  • The title of the review.



  • body
  • string
  • The body text of the review. Note it's possible for a review to contain only a title , and no body . In this case the body property will be absent.



  • body_html
  • string
  • The HTML of the review body, useful if you wish to preserve HTML formatting.



  • link
  • string
  • The link to the review. Note that in the case of Global Reviews (identified by having a review_country other than that of the target Amazon domain and is_global_review=true ) no link is published.



  • rating
  • number
  • The product rating given by the reviewer, out of 5.



  • verified_purchase
  • boolean
  • Whether this reviewer is an Amazon-verified purchaser of the product.



  • attributes
  • array
  • Attributes Array The attributes array contains details of the product attributes as shown underneath the product title on the customer reviews page.
    • 
      1. name
      2. string
      3. The name of the product attribute i.e. "Capacity".
    • 
      1. value
      2. string
      3. The value of the product attribute i.e. "128 GB".


Next Steps      Reviews Parameters