marketplace.product.reviews

Credits: 1 + 1/entry returned
Provides an overview of customer reviews for the specified product. This includes the total number of reviews, the average star rating, and a list of the most recent reviews in descending order by date. The LIMIT parameter allows you to restrict the number of historical reviews returned, while the OFFSET parameter lets you adjust the starting point for retrieving these reviews.

Result

The result provides an overview of the reviews for the given product, including the total number of reviews (count) and the average score (avg_score). Additionally, it includes a list of individual reviews. Each review contains the rating (score), the username of the reviewer (username), the review date (date), and the title of the review (title).

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'.
limit
INTEGER
Specifies the maximum number of historical reviews to return. Adjust this parameter to control how many reviews are included in the response.
offset
INTEGER
Determines the starting point in the list of historical reviews. Adjust this parameter to skip a specified number of reviews and start the result set from that position.
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.reviews";
$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.reviews'
post = {

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