marketplace.visindex.seller

Credits: 1/entry returned
Provides the SISTRIX visibility index for Amazon for a specific seller. This metric indicates the visibility of the seller's products on Amazon and helps assess their performance in search results. The HISTORY parameter allows you to retrieve historical visibility index values. You can further refine the results using the TYPE parameter to focus on organic, sponsored, or global visibility metrics. The LIMIT and OFFSET parameters let you restrict and adjust the range of historical data. If you need a single historical data point, use the DATE parameter to specify the exact date for which you want the visibility index.

Result

The result contains information about the visibility index of the given seller. If historical data is requested, it includes a list of these data points. For each visibility index entry, the seller's ID (seller-id), seller name (seller-name), the date of the data point (date), and the visibility index value (value) are provided.

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 seller. The ID can be used to query seller-related data. 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'.
history
BOOLEAN
If set to TRUE, all available historical visibility index values are returned for the specified seller. By default, this parameter is set to FALSE, meaning only the current visibility index is provided. If history is set to TRUE and the limit parameter is not used, the visibility index for the last 30 days will be displayed.
type
STRING
Specifies the type of visibility index to retrieve. Options include organic, sponsored, or global (which combines both organic and sponsored).
date
DATE
To retrieve a single historical data point, use the date parameter. The date should be provided in the ISO 8601 format (YYYY-MM-DD).
limit
INTEGER
Limits the number of historical visibility index values returned. This parameter is only applicable when the history parameter is set to TRUE. If not provided, the default limit is set to 30 historical data points.
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.visindex.seller";
$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.visindex.seller'
post = {

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