Core APIs
...
Parameters
Seller Data

Seller Profile

4min
seller profile parameters get get /request the seller profile parameters are applicable when making a request with type=seller profile to retrieve seller profile details for a single seller on amazon the seller is specified using either the seller id and amazon domain parameters or the url parameter (where the url parameter contains a link to an amazon seller profile page) the parameters should be appended as querystring parameters to the product data api get http request seller profile details are retrieved from the seller profile page https //www amazon com/sp?seller=a02211013q5hp3omszc7w for a single seller on amazon you can retrieve the seller id value for a given seller from other rainforest requests, such as type=offers requests you can use subsequent seller products https //docs trajectdata com/rainforestapi/product data api/parameters/seller products and seller feedback https //docs trajectdata com/rainforestapi/product data api/parameters/seller feedback requests to retrieve iterate all of the products and customer feedback from a given seller for example, to request seller profile details for the seller with id a02211013q5hp3omszc7w on amazon com the request would be http https //api rainforestapi com/request?api key=demo\&type=seller profile\&seller id=a02211013q5hp3omszc7w\&amazon domain=amazon comcurl l get https //api rainforestapi com/request \\ d api key="demo" \\ d type="seller profile" \\ d seller id="a02211013q5hp3omszc7w" \\ d amazon domain="amazon com"const axios = require('axios'); // set up the request parameters const params = { api key "demo", type "seller profile", seller id "a02211013q5hp3omszc7w", amazon domain "amazon com" } // 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 profile', 'seller id' 'a02211013q5hp3omszc7w', 'amazon domain' 'amazon com' } \# 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 profile', 'asin' => 'a02211013q5hp3omszc7w', 'amazon domain' => 'amazon com' ]); \# 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 profile parameters the following parameters are available for all requests made when type=seller profile parameter required description amazon domain optional the amazon domain to retrieve seller profile details 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 note if the amazon domain and seller id parameters are supplied then the url parameter is ignored seller id optional the amazon seller id to retrieve seller profile details for used in combination with the amazon domain parameter note if the seller id and amazon domain parameters are supplied then the url parameter is ignored note seller ids can be retrieved from rainforest api type=offers requests url optional the amazon seller profile page url of the seller to retrieve results from next steps seller profile results https //docs trajectdata com/rainforestapi/product data api/results/seller profile