marketplace

Creates a list of available marketplace methods for the given ASIN, ID, HASH or KEYWORD. By specifying a ASIN, ID, HASH or KEYWORD, this function generates a list of associated marketplace methods that can be executed. It provides an overview of all marketplace actions that can be applied to the given input.

Result

The result provides a JSON or XML array that lists all available marketplace-related methods for the given input. Each method includes its name and a function URL, which uses the given parameter to call the API.

GET-Parameters

Parameters (Mandatory)

api_key
STRING
Your personal API key. This key is used to authenticate your requests. You can obtain it here.

Parameters (Optional)

asin
STRING
An identifier used by Amazon to uniquely identify a product. This parameter is required when querying product-related data.
kw
STRING
The keyword parameter specifies the keyword for which the marketplace functions are to be returned.
id
STRING
An identifier used by Amazon to uniquely distinguish a brand. The ID can be used to query brand-related data. The brand ID can be extracted from the Sistrix URL, such as: https://amz.sistrix.com/de/brand/15433338031.
hash
STRING
Specifies the unique product list hash used to identify a specific SISTRIX product list. The hash can be retrieved from the URL in the SISTRIX Toolbox.
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";
$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'
post = {

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