Core APIs
...
Parameters
Seller Data
Seller Feedback
4min
seller feedback parameters get get /request 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 for example, to request page=2 of seller feedback results for a seller with id a02211013q5hp3omszc7w on amazon com the request would be http https //api rainforestapi com/request?api key=demo\&type=seller feedback\&seller id=a02211013q5hp3omszc7w\&amazon domain=amazon com\&page=2curl l get https //api rainforestapi com/request \\ d api key="demo" \\ d type="seller feedback" \\ d seller id="a02211013q5hp3omszc7w" \\ d amazon domain="amazon com" \\ d page="2"const axios = require('axios'); // set up the request parameters const params = { api key "demo", type "seller feedback", seller id "a02211013q5hp3omszc7w", amazon domain "amazon com", page 2 } // make the http get request to rainforest api axios get('https //api rainforestapi com/request', { params }) then(response => { // print the json response from rainforest api console log(json stringify(response data, 0, 2)); }) catch(error => { // catch and print the error console log(error); })import requests import json \# set up the request parameters params = { 'api key' 'demo', 'type' 'seller feedback', 'seller id' 'a02211013q5hp3omszc7w', 'amazon domain' 'amazon com', 'page' '2', } \# make the http get request to rainforest api api result = requests get('https //api rainforestapi com/request', params) \# print the json response from rainforest api print(json dumps(api result json()))\<?php \# set up the request parameters $querystring = http build query(\[ 'api key' => 'demo', 'type' => 'seller feedback', 'seller id' => 'a02211013q5hp3omszc7w', 'amazon domain' => 'amazon com', 'page' => '2' ]); \# make the http get request to rainforest api $ch = curl init(sprintf('%s?%s', 'https //api rainforestapi com/request', $querystring)); curl setopt($ch, curlopt returntransfer, true); curl setopt($ch, curlopt followlocation, true); \# the following options are required if you're using an outdated openssl version \# more details https //www openssl org/blog/blog/2021/09/13/letsencryptrootcertexpire/ curl setopt($ch, curlopt ssl verifyhost, false); curl setopt($ch, curlopt ssl verifypeer, false); curl setopt($ch, curlopt timeout, 180); $api result = curl exec($ch); curl close($ch); \# print the json response from rainforest api echo $api result; ?> seller feedback parameters the following parameters are available for all requests made when type=seller feedback parameter required description amazon domain optional the amazon domain to retrieve seller feedback results from for the seller specified in the seller id parameter for a full list of supported amazon domains see supported amazon domains https //docs trajectdata com/rainforestapi/product data api/reference/amazon domains seller id optional the amazon seller id to retrieve seller feedback results for used in combination with the amazon domain parameter note seller ids can be retrieved from rainforest api type=offers requests page optional the page of seller feedback results to retrieve max page optional use the max page parameter to get multiple pages of results in one request the api will automatically paginate through pages and concatenate the results into one response see the pagination https //docs trajectdata com/rainforestapi/product data api/pagination docs for more information next steps seller feedback results https //docs trajectdata com/rainforestapi/product data api/results/seller feedback