links.linktexts

Credits: 1/entry returned
Returns a list of the top backlink texts for the specified DOMAIN, PATH, or HOST, including detailed metrics about the origin of these backlink texts. The number of returned link texts can be adjusted using the LIMIT parameter.

Result

The result contains a list of backlink texts. Each backlink text entry includes the text itself (text), the count of backlinks using this text (links), and various metrics detailing the origin of these backlinks. Specifically, the HPOP and HOSTS fields show the number of hosts using this backlink text, while the IPOP and IPS fields display the count of IPs using it. The DPOP and DOMAINS fields reveal the number of domains using the backlink text. Additionally, the netpop and net fields provide information on the number of class c networks utilizing the backlink text to link back to the specified DOMAIN, PATH, or HOST.

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)

limit
INTEGER
Specifies the maximum number of link texts 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.linktexts";
$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.linktexts'
post = {

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