ai.entity.visindex

Credits: 5
The result provides the VisIndex of the specified entity, which measures the overall relevance and presence of the entity across AI-generated content. Values can be returned for all models combined or broken down by individual AI models. The language parameter can be used to specify the output language.

Result

The result contains the VisIndex values for the specified entity. Each entry includes the overall VisIndex (all) as well as the VisIndex for individual AI models (gpt, gemini, deepseek).

GET-Parameters

Parameters (Mandatory)

api_key
STRING
Your personal API key. This key is used to authenticate your requests. You can obtain it here.
entity
STRING
In the context of AI analysis, an entity is a clearly identifiable object or concept mentioned within a text. This can include companies or brands (e.g., SISTRIX, Nike), people (e.g., Angela Merkel), places (e.g., Berlin, New York), or products and services (e.g., Toolbox, iPhone).

Parameters (Optional)

lang
STRING
Defines the language in which the results will be returned. The parameter follows ISO 639 (German = de). If no language is specified, the default Toolbox language will be used.
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.entity.visindex";
$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.entity.visindex'
post = {

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