Amazon Seller Feedback
Get the customer feedback results for a seller on Amazon.
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_feedbackpagination
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:
https://ecom.webscrapingapi.com/v1?engine=amazon&api_key=<YOUR_API_KEY>&type=seller_feeback&seller_id=AAZRLVTNON75ZAmazon Seller Feedback Integration Examples
curl --request GET --url "https://ecom.webscrapingapi.com/v1?engine=amazon&api_key=<YOUR_API_KEY>&type=seller_feeback&seller_id=AAZRLVTNON75Zconst http = require("https");
const options = {
"method": "GET",
"hostname": "ecom.webscrapingapi.com",
"port": null,
"path": "/v1?engine=amazon&api_key=<YOUR_API_KEY>&type=seller_feeback&seller_id=AAZRLVTNON75Z",
"headers": {}
};
const req = http.request(options, function (res) {
const chunks = [];
res.on("data", function (chunk) {
chunks.push(chunk);
});
res.on("end", function () {
const body = Buffer.concat(chunks);
console.log(body.toString());
});
});
req.end();
Last updated
