links.list

Credits: 1/entry returned; MAX: 250
Returns up to 10,000 known backlinks for the given DOMAIN. The results include the source URL and target URL of each link. The number of returned links can be controlled using the limit parameter, and the offset parameter determines the starting position of the links in the list.

Result

The result contains a list of up to 10,000 backlinks. Each backlink includes its origin (url.from), the link text (text), and its target (url.to).

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

Parameters (Optional)

offset
INTEGER
Specifies the starting point in the list of backlinks. This allows you to skip a certain number of results and retrieve the next set of data. For example, setting offset to 10 will start returning results from the 11th position onward.
limit
INTEGER
Specifies the maximum number of backlinks to be returned. By default, this is set to 10000. 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.list";
$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.list'
post = {

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