ai.tracker.environment

Credits: 1/entry returned
Returns a list of entities and terms that constitute the thematic ENVIRONMENT of the specified PROJECT. These are keywords and entitys mentioned by the AI in connection with the project's prompts, providing insight into the semantic context and associations the AI maintains. The result includes the misc attribute, which contains the specific terms, characters, or topics mentioned. For each entry, the response provides the frequency of mentions (mentions) and the number of distinct prompts (prompt_count) where these terms appeared. This data helps to understand which "neighboring topics" the AI links to the project. The output can be customized using the model and limit parameters.

Result

The result contains a list of entities identified within the environment of a specific project. Each entry includes the identified term (misc), the number of unique prompts where the term appeared (prompt_count), and the total number of mentions across those prompts (mentions).

GET-Parameters

Parameters (Mandatory)

api_key
STRING
Your personal API key. This key is used to authenticate your requests. You can obtain it here.
project
STRING
Specifies the unique hash used to identify a specific project. This hash can be obtained through the ai.tracker.overview method.

Parameters (Optional)

limit
INTEGER
Specifies the number of reults for each page. Adjust this value to control the number of results returned on each page. By default, this parameter is set to 100.
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.environment";
$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.environment'
post = {

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