marketplace.brand.sellers

Credits: 1/entry returned
Returns a list of sellers associated with a specific brand, including basic details such as the number of products and visibility indices for organic, sponsored, and global data. The results can be filtered by the country parameter. Use the LIMIT parameter to restrict the number of sellers returned and the OFFSET parameter to specify the starting point in the list.

Result

The result contains a list of sellers for the given brand. Each seller includes the seller's name (name), seller ID (id), and their visibility index across organic, sponsored, and global data (visibility_organic, visibility_sponsored, visibility_global). Additionally, it shows the total number of products the seller offers from the given brand (products), along with the average product rating (avg_rev_stars) and the seller's buybox percentage (buybox_quote) for the products sold by the listed seller from the given brand.

GET-Parameters

Parameters (Mandatory)

api_key
STRING
Your personal API key. This key is used to authenticate your requests. You can obtain it here.
id
STRING
An identifier used by Amazon to uniquely distinguish a brand. This can be provided as a specific brand ID or alternatively, the brand's name. The brand ID can be extracted from the Sistrix URL, such as: https://amz.sistrix.com/de/brand/15433338031.

Parameters (Optional)

country
STRING / countrycode
Defines the country for which the method will be executed. You can find a list of available marketplace country codes here. If no country parameter is provided, the default country is 'de'.
limit
INTEGER
Specifies the maximum number of sellers to return. Adjust this parameter to control how many sellers are included in the response.
offset
INTEGER
Determines the starting point in the list of sellers. Adjust this parameter to skip a specified number of sellers and start the result set from that position.
format
STRING
Specifies whether the response will be returned in XML or JSON format. By default, the result will be in XML format.
To be able to use the API documentation with real data, you have to create an API key in your account.
EXAMPLE
$baseUrl = "https://api.sistrix.com/marketplace.brand.sellers";
$post = [

];
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, $baseUrl);
curl_setopt($curl, CURLOPT_POSTFIELDS, $post);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
$response = curl_exec($curl);
curl_close($curl);
import requests
baseUrl = 'https://api.sistrix.com/marketplace.brand.sellers'
post = {

}
response = requests.post(baseUrl, post)
data = response.text
curl https://api.sistrix.com/marketplace.brand.sellers \
let baseUrl = 'https://api.sistrix.com/marketplace.brand.sellers';
let form = new FormData();

fetch(baseUrl, {
method: 'POST',
body: form
}).then(function(response){
return response.text();
}).then(function(data){
//data contains the results of the request
})