To enable this feature, set the **type=seller_feeback**parameter.
The request can return a maximum of 5 seller feedback records. To access additional seller feedback records beyond the first page, you can utilize the page parameter for pagination. By inspecting the pagination.has_next_page property, you can determine if there are more results available on the next page to retrieve.
The main keys included in the returned JSON object are:
seller_feedback
pagination
Amazon Seller Feedback Parameters
The Amazon Seller feature only takes one specific parameter:
Parameter
Type
Description
seller_id
Required
string
The ID of an amazon seller.
Your full GET request should then be sent to the following address:
var client = new RestClient("https://ecom.webscrapingapi.com/v1?engine=amazon&api_key=<YOUR_API_KEY>&type=seller_feeback&seller_id=AAZRLVTNON75Z");
var request = new RestRequest(Method.GET);
IRestResponse response = client.Execute(request);