domain.overview

Credits: 5
Creates an overview of the most recent relevant key figures of the given DOMAIN, HOSTNAME, URL, or PATH. This function generates a summary of the latest important metrics related to the specified domain, hostname, URL, or path. The overview includes key figures such as domain visibility, the count of SEO keywords, and the count of AdWords. By using the Country parameter, you can specify the country for which the overview should be generated.

Result

The result provides key metrics for the specified domain, including the visibility index (sichtbarkeitsindex) with its value and date, the SEO keyword count (kwcount.seo) for the domain, and the AdWord count (kwcount.sem). Each metric is detailed with the domain, measurement date, and the corresponding 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
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.
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.overview";
$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.overview'
post = {

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