domain.urlcount.seo

Credits: 1/entry returned
Provides the top 10 and top 100 URL counts for the given DOMAIN, HOST, PATH, or URL. The number and position of results can be adjusted using the limit, offset, date, and history parameters. Additionally, you can modify the country for which the data should be returned.

Result

The result contains the URL counts for the specified target. Each entry includes the date of the evaluation (date), the number of URLs ranking in the top 10 (top10), and the number of URLs ranking in the top 100 (top100).

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.
date
DATE
Defines a specific date for which the amount of URLs will be returned.
history
BOOLEAN
If set to TRUE, historical weekly URL counts are returned. By default, this parameter is set to FALSE, meaning only current data is provided. If history is set to TRUE and the limit parameter is not used to restrict the number of results, the URL count for the last 100 weeks will be displayed. To change the start date, use the date parameter.
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.urlcount.seo";
$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.urlcount.seo'
post = {

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