Amazon Seller Profile
To enable this feature, set the type=seller_profileparameter.
The Amazon Seller feature should be used when scraping Amazon products from a seller. This feature will return a JSON object with the available products sold by a seller. Among other useful information, the main keys included in the JSON object are:
seller_detailsfeedbackfeedback_summary
Amazon Seller Profile 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.shifter.io/v1?engine=amazon&api_key=<YOUR_API_KEY>&type=seller_profile&seller_id=AAZRLVTNON75ZAmazon Seller Profile Integration Examples
curl --request GET --url "https://ecom.shifter.io/v1?engine=amazon&api_key=<YOUR_API_KEY>&type=seller_profile&seller_id=AAZRLVTNON75Zconst http = require("https");
const options = {
"method": "GET",
"hostname": "ecom.shifter.io",
"port": null,
"path": "/v1?engine=amazon&api_key=<YOUR_API_KEY>&type=seller_profile&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
Was this helpful?