Retrieves the keywords for which the specified Amazon product is found in search results. This method provides the keywords, the product's ranking (position in the search results) for each keyword, and the traffic amount. Additionally, it shows the competition level on a scale from 0 to 100, indicating the competitiveness of the keywords.
Result
The result contains a list of keywords for the given product. Each keyword includes the keyword itself (keyword), the product's ranking for that keyword (ranking), the keyword's traffic (traffic), and the competition level for the keyword (competition).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 keywords to return. Adjust this parameter to control how many keywords are included in the response.
offset
INTEGER
Determines the starting point in the list of keywords. Adjust this parameter to skip a specified number of keywords and start the result set from that position.
type
STRING
Set the parameter to organic, sponsored, or global to receive the specific type of result. If no type is provided, organic will be used as the default.
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.keywords";
$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.keywords'
post = {
}
response = requests.post(baseUrl, post)
data = response.text
curl https://api.sistrix.com/marketplace.product.keywords \
let baseUrl = 'https://api.sistrix.com/marketplace.product.keywords';
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
})