links.overview

Credits: 25
Provides an overview of the found backlinks for the given DOMAIN, HOST or PATH. The function returns the total number of backlinks, the number of unique hostnames (Host-Pop), unique domains (Domain-Pop), and unique IP addresses (IP-Pop).

Result

The result provides an overview of the total number of backlinks and detailed information about their origins. Under the total array key, you can find the total number of backlinks. For more detailed origin information, the hosts key shows the number of backlinks from different hosts, the networks key indicates the number of backlinks from various networks, the domains key reveals the number of backlinks from different domains, and the c-class key displays the number of backlinks from various Class C IP ranges. Each of these keys uses the num parameter to represent the count of backlinks.

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 or path to which the method is applied, depending on the key value provided.

Parameters (Optional)

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/links.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/links.overview'
post = {

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