This section explains how to access the Kaspersky CyberTrace REST API.
REST API endpoint
Kaspersky CyberTrace accepts requests on the endpoint which consists of the IP address of the computer with Kaspersky CyberTrace and the port specified in the GUISettings > HTTPServer > ConnectionString
element of the kl_feed_service.conf configuration file.
The format of the address is:
https://%ENDPOINT%/api/%API_VERSION%/%REQUEST%
For example, if ConnectionString
is 0.0.0.0:104
, and the IP address of the computer with Kaspersky CyberTrace is 192.168.0.2, the lookup request must be made to the following address:
https://192.168.0.2:104/api/1.1/lookup
Request headers
Each request must have the following headers:
Response content type. This header must have the application/json
value.
This header must hold the Basic authorization string.
Basic authorization
The credentials for the Basic authorization scheme are constructed as follows:
For example, if the user name is user
, and the password is password
, the string must be user:password
.
For the example above, the resulting string is dXNlcjpwYXNzd29yZA==
.
For the example above, the final authorization string is Basic dXNlcjpwYXNzd29yZA==
.