domain.traffic.estimation

Credits: 1/entry returned
Provides the top 100 paths with the highest traffic for the given DOMAIN, HOST, PATH, or URL. The number and position of results can be adjusted using the limit and offset parameters. Additionally, you can modify the country for which the distribution should be returned.

Result

The result contains the paths with the highest traffic. Each path entry includes its estimated clicks (clicks), the share of clicks as a percentage (share), the number of top 100 keywords (keywords), and the estimated value of the path (value).

GET-Parameters

Parameters (Mandatory)

api_key
STRING
Your personal API key. This key is used to authenticate your requests. You can obtain it here.
address_object (domain/host/path/url)
STRING
Defines the domain, host, path, or URL to which the method is applied, depending on the key value provided.

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 number of results to be returned. By default, this is set to 100. Adjust this value to control the number of results returned.
offset
INTEGER
Defines the starting rank for the displayed paths. This parameter allows you to skip a specified number of top paths and begin the list from a different position. For example, an offset of 10 starts the list at the 11th 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/domain.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/domain.traffic.estimation'
post = {

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