marketplace.sales.overview

Credits: 1/entry returned
Returns an overview of the sales for the specified product, seller, or brand. This includes data such as estimated sales, sales rank, sales volume, and other relevant metrics.

Result

The result contains an overview of sales data for the given product, seller, or brand. It includes the identifier for the object, which is based on the type of object (e.g., asin for products or id for sellers). Additionally, the result provides the estimated sales (estimated_sales), the estimated sales rank (estimated_sales_rank), the estimated sales volume (estimated_sales_volume), and the rank for this sales volume (estimated_sales_volume_rank).

GET-Parameters

Parameters (Mandatory)

api_key
STRING
Your personal API key. This key is used to authenticate your requests. You can obtain it here.
asin
STRING
An identifier used by Amazon to uniquely identify a product, seller or brand. This parameter is required when querying product/brand-related data. The brand ID can be extracted from the Sistrix URL, such as: https://amz.sistrix.com/de/brand/15433338031. The seller ID can be extracted from the Sistrix URL, such as: https://amz.sistrix.com/de/seller/A13P6277X44WWB.

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'.
object
STRING
Specify whether the function should search for products, sellers, or brands by using the parameter value "product," "seller," or "brand." The default setting for this function is "product."
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.sales.overview";
$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.sales.overview'
post = {

}
response = requests.post(baseUrl, post)
data = response.text
curl https://api.sistrix.com/marketplace.sales.overview \
let baseUrl = 'https://api.sistrix.com/marketplace.sales.overview';
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
})