marketplace.product

Creates a list of available marketplace methods for the given ASIN. By specifying a asin, 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 contains a list of all available methods for the specified product. Each method includes the method name (method), the corresponding URL (url), and the display name (name). The URL is pre-filled with your API key and the provided ASIN for the product.

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. This parameter is required when querying product-related data.

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'.
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.product";
$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.product'
post = {

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