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 (domain)
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.
regex_link_from
STRING
The regex_link_from filter can be used to restrict results based on a regular expression. The filter is applied to the link_from field of each row and returns only those rows where the link matches the given pattern. When used as a GET parameter in the request URL, the regular expression must be URL-encoded. For example, the + character has to be encoded as %2B.
regex_link_to
STRING
The regex_link_to filter can be used to restrict results based on a regular expression. The filter is applied to the link_to field of each row and returns only those rows where the link matches the given pattern. When used as a GET parameter in the request URL, the regular expression must be URL-encoded. For example, the + character has to be encoded as %2B.
regex_link_text
STRING
The regex_link_text filter can be used to restrict results based on a regular expression. The filter is applied to the link_text field of each row and returns only those rows where the text matches the given pattern. When used as a GET parameter in the request URL, the regular expression must be URL-encoded. For example, the + character has to be encoded as %2B.
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
})