marketplace.product.price

Credits: 1 + 1/entry returned
Provides data on the price history of the specified product, including the highest and lowest prices along with their corresponding dates, as well as a detailed price history. The country parameter allows you to specify the country for which the prices are displayed. Additionally, the start parameter enables you to retrieve the price development from a specified date onward.

Result

The result provides a price overview, including the lowest price (lowest) and the date when the lowest price was recorded (lowest_date), as well as the highest price (highest) and the corresponding date (highest_date). Additionally, it contains a list of historical prices. Each historical data point includes the date range for a price (date_from, date_to), the price for that range (price), the seller's ID who offered the price (seller_id), and the seller's name (seller_name).

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'.
start
DATE
Specifies the starting date from which the price development should be retrieved, tracking the product's price changes from the given date up to today.
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.price";
$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.price'
post = {

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