domain.competitors.sem

Credits: 1/entry returned
Creates a list of ADs competitors and their degree of similarity (%) with the given DOMAIN, PATH, or URL. The match indicates how closely each competitor's ADs profile matches that of the specified object. The number of displayed competitors can be modified with the limit parameter. Further modifications can be made using the country parameter, which changes the country used for the comparison.

Result

The result contains a list of ADs competitors, sorted by similarity from most to least similar. Each ADs competitor entry includes the domain (domain) and the degree of similarity (match). The given domain, host, path, or URL will appear as a competitor with a 100% match.

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

Parameters (Optional)

country
STRING / countrycode
Defines the country for which the method will be executed. You can find a list of available country codes here. If no Country parameter is provided, the default country associated with the Toolbox account will be used.
limit
INTEGER
Specifies the maximum number of competitors to be displayed in the result. By default, this parameter is set to 100, which limits the number of competitors returned by the function.
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/domain.competitors.sem";
$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/domain.competitors.sem'
post = {

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