Returns a list of the top link targets for the given DOMAIN, PATH or HOST, including detailed metrics about the origin of these backlink. The amount of returned link targets can be adjusted using the limit parameter.
Result
The result contains a list of the top link targets for the specified domain, host, or path. Each link target includes the target URL (to), the number of links pointing to this target (links), and details about the origins of these links, such as the number of different domains (domains/dpop), the number of distinct IP addresses (ips/ipop), and the number of different networks (nets/netpop).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, PATH or HOST to which the method is applied, depending on the key value provided.
Parameters (Optional)
limit
INTEGER
Specifies the maximum number of link targets to be returned. By default, this is set to 100. Adjusting this parameter changes the number of results displayed.
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.linktargets";
$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.linktargets'
post = {
}
response = requests.post(baseUrl, post)
data = response.text
curl https://api.sistrix.com/links.linktargets \
let baseUrl = 'https://api.sistrix.com/links.linktargets';
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
})