marketplace.keyword.traffic

Credits: 1/entry returned
Provides the traffic for one or more specified keywords. You can use the country parameter to set the country for which the traffic should be returned. To retrieve historical data for specific dates, you can use the date parameter.

Result

The result contains a list of the given keywords. Each keyword includes its text (kw) and the corresponding traffic (traffic).

GET-Parameters

Parameters (Mandatory)

api_key
STRING
Your personal API key. This key is used to authenticate your requests. You can obtain it here.
kw
STRING
The keyword parameter specifies the search term for which the traffic will be returned.

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'.
date
DATE
To retrieve a single historical data point, use the date parameter. The date should be provided in the ISO 8601 format (YYYY-MM-DD).
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.keyword.traffic";
$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.keyword.traffic'
post = {

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