Core APIs
...
Results
Seller Data

Seller Feedback

3min

Seller Feedback Results

The Seller Feedback Parameters are applicable when making a request with type=seller_feedback to retrieve seller customer feedback details for a seller on Amazon - the seller is specified using the seller_id and amazon_domain parameters. The parameters should be appended as querystring parameters to the Product Data API GET HTTP request.

Seller feedback details are retrieved from the feedback section of the seller profile page. You can retrieve the seller_id value for a given seller from other Rainforest requests, such as type=offers requests.

A maximum of 5 seller feedback records can be returned per request. You can paginate through multiple pages of seller feedback records using the page parameter. Inspect the pagination.has_next_page property to determine whether there is a next page of results to retrieve.

Seller Feedback Results
Seller Feedback Results


An example of the JSON object returned from an Seller Feedback request is shown below:

JSON


Rainforest API returns the following properties for Seller Feedback requests:

Property

Type

Description

seller_feedback

array

Seller Feedback Array The seller feedback array contains feedback objects representing the customer feedback results for the current seller feedback page. The feedback object has the following properties:

  • rater
  • number
  • The customer rating given with the feedback, out of 5.



  • body
  • string
  • The body text of the customer feedback.



  • rater
  • string
  • The name of the customer giving the customer feedback about this seller.



  • has_response
  • boolean
  • Whether the feedback has received a seller response, or not.



  • date
  • object
  • Date Object The date object contains details about the date of the feedback was left.
    • 
      1. raw
      2. string
      3. The raw date as retrieved from the feedback (an un-parsed string).
    • 
      1. utc
      2. string
      3. The date of the feedback, parsed from the raw date, in ISO 8601 format. If Rainforest API cannot parse the raw date then this property will be null.

pagination

object

An object containing details of the current Seller Feedback page and whether or not a next-page of results is available. To paginate you should check whether has_next_page=true and specify the next_page number in a subsequent request's page parameter .

  • current_page
  • number
  • The current page number.



  • has_next_page
  • boolean
  • Whether a next page is available, or not.



  • next_page
  • number
  • Thepage number of the next page.


Next Steps      Seller Feedback Parameters