keyword.seo.traffic.estimation

Credits: 1/entry returned
Displays the estimated distribution of traffic across different rankings for a specified keyword. You can adjust the results to reflect the traffic estimation for rankings in a specific country by using the COUNTRY parameter.

Result

The result contains a list of the top-ranking positions for the specified keyword. Each ranking entry includes the ranking position (position), the corresponding URL (url), and an estimate of how much traffic from the overall keyword traffic applies to that specific ranking (traffic_estimation).

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
Defines the keyword to which the method is applied.

Parameters (Optional)

country
STRING / countrycode
Defines the country for which the method will be executed. You can find a list of available country codes here. If no Country parameter is provided, the default country associated with the Toolbox account will be used.
limit
INTEGER
Specifies the maximum number of ranking estimates to be displayed in the result. By default, this parameter is set to 100, limiting the number of ranking estimates returned by the function.
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/keyword.seo.traffic.estimation";
$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/keyword.seo.traffic.estimation'
post = {

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