Provides an overview of the most important data for an Amazon product. This includes information such as the product title, listing date, price, seller, rating, and the number of associated keywords. Additionally, it provides references to functions for further analysis of the displayed values. You can specify the marketplace country for which the data applies using the Country parameter
Result
The result provides an overview of the most relevant information about the specified product, including the product ASIN (asin), the country for the request (country), the display name (title), and the listing date (listed_since). Additionally, the product details include pricing information, such as the price itself (price), the displayed currency (currency), and a link to an API call for more detailed price information (price_link). Furthermore, the product contains review data, including the number of reviews (reviews), the average review rating (avg_review), and a link to an API call for further insights into the reviews (reviews_link). Finally, the product includes information about its keywords, starting with the count of keywords associated with the product (count) and a link to an API call for more detailed keyword information (keyword_link).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.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.product.overview'
post = {
}
response = requests.post(baseUrl, post)
data = response.text
curl https://api.sistrix.com/marketplace.product.overview \
let baseUrl = 'https://api.sistrix.com/marketplace.product.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
})