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 https //www amazon com/sp?seller=a02211013q5hp3omszc7w 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 an example of the json object returned from an seller feedback request is shown below { "request info" { "success" true, "credits used" 1, "credits remaining" 999 }, "request metadata" { "id" "48d63ef58b3eb240d5b18115b674c4170faba51f", "created at" "2020 01 01t00 00 00 000z", "processed at" "2020 01 01t00 00 00 001z", "total time taken" 0 1, "amazon url" "https //www amazon com/sp?seller=a02211013q5hp3omszc7w" }, "request parameters" { "type" "seller feedback", "seller id" "a02211013q5hp3omszc7w", "amazon domain" "amazon com", "page" "2" }, "seller feedback" \[ { "rater" "maritzela mcgreevy", "rating" 5, "has response" false, "body" "great price for this item!\n", "date" { "raw" "october 3, 2020", "utc" "2020 10 03t11 00 00 000z" }, "position" 1 }, { "rater" "zippy", "rating" 5, "has response" false, "body" "fast delivery", "date" { "raw" "october 3, 2020", "utc" "2020 10 03t11 00 00 000z" }, "position" 2 }, { "rater" "9mikemike", "rating" 5, "has response" false, "body" "great reader", "date" { "raw" "october 3, 2020", "utc" "2020 10 03t11 00 00 000z" }, "position" 3 }, { "rater" "william", "rating" 5, "has response" false, "body" "package arrived well before the scheduled time ", "date" { "raw" "october 3, 2020", "utc" "2020 10 03t11 00 00 000z" }, "position" 4 }, { "rater" "michael j ", "rating" 5, "has response" false, "body" "im happy", "date" { "raw" "october 3, 2020", "utc" "2020 10 03t11 00 00 000z" }, "position" 5 } ], "pagination" { "current page" 2, "has next page" true, "next page" 3 } } 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 raw string the raw date as retrieved from the feedback (an un parsed string) utc string the date of the feedback, parsed from the raw date, in iso 8601 https //en wikipedia org/wiki/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 https //docs trajectdata com/rainforestapi/product data api/parameters/seller feedback 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 https //docs trajectdata com/rainforestapi/product data api/parameters/seller feedback