Returns a list of all PROJECTS currently stored in the account. This endpoint provides the basic identification data required to access more detailed metrics for a specific project.
The result includes the unique hash for each project, which is used as a parameter for all other ai.tracker endpoints. Additionally, the name attribute displays the user-defined title of the project. This overview is essential for identifying the correct project scope before querying specific data for competitors, sources, or prompts.
Result
The result contains a list of AI projects. Each project includes its identifying hash (hash) and the project name (name).GET-Parameters
Parameters (Mandatory)
api_key
STRING
Your personal API key. This key is used to authenticate your requests. You can obtain it here.
Parameters (Optional)
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/ai.tracker.overview";
$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/ai.tracker.overview'
post = {
}
response = requests.post(baseUrl, post)
data = response.textcurl https://api.sistrix.com/ai.tracker.overview \
let baseUrl = 'https://api.sistrix.com/ai.tracker.overview';
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
})