Skip to main content
GET
/
cases
List hydrated cases with threat events
curl --request GET \
  --url https://eris.devops.truu.ai/api/v1/external/cases \
  --header 'X-API-Key: <api-key>'
import requests

url = "https://eris.devops.truu.ai/api/v1/external/cases"

headers = {"X-API-Key": "<api-key>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};

fetch('https://eris.devops.truu.ai/api/v1/external/cases', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://eris.devops.truu.ai/api/v1/external/cases",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://eris.devops.truu.ai/api/v1/external/cases"

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("X-API-Key", "<api-key>")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://eris.devops.truu.ai/api/v1/external/cases")
.header("X-API-Key", "<api-key>")
.asString();
require 'uri'
require 'net/http'

url = URI("https://eris.devops.truu.ai/api/v1/external/cases")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'

response = http.request(request)
puts response.read_body
{
  "next_cursor": "<string>",
  "data": [
    {
      "case_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "tuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "user_email": "<string>",
      "user_name": "<string>",
      "threat_type": "<string>",
      "threat_brief": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z",
      "closed_at": "2023-11-07T05:31:56Z",
      "events": [
        {
          "event_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
          "kind": "<string>",
          "tuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
          "category": [
            "<string>"
          ],
          "subcategory": [
            "<string>"
          ],
          "title": "<string>",
          "summary": "<string>",
          "source": "<string>",
          "source_table": "<string>",
          "source_event_ids": [
            "<string>"
          ],
          "user_name": "<string>",
          "user_email": "<string>",
          "created_at": "2023-11-07T05:31:56Z"
        }
      ]
    }
  ]
}
{
"error": "<string>"
}
{
"error": "<string>"
}
{
"error": "<string>"
}
{
"error": "<string>",
"resource": "<string>",
"message": "<string>",
"details": "<string>",
"days_until_ready": 123,
"external_api_enabled_at_utc": "2023-11-07T05:31:56Z",
"now_utc": "2023-11-07T05:31:56Z"
}
{
"error": "<string>"
}

Authorizations

X-API-Key
string
header
required

Domain-scoped API key. Generate and manage keys from the API Keys page in Settings.

Accepted in two forms:

  • X-API-Key: <key> header (preferred)
  • Authorization: Bearer <key> header (also accepted)

Query Parameters

email
string

Filter by user email or UPN.

tuid
string<uuid>

Filter by TOTAL user identifier. If combined with email, both must refer to the same user.

case_id
string<uuid>
state
string

Lifecycle state of a case:

  • discover — Vetted by the AI judge, ready for triage
  • pending_investigation — Swiped; investigation pending
  • investigating — Investigation underway
  • enforced — An enforcement action has been taken
  • closed — Case closed
threat_type
string

Case classification from the AI judge (Predict / inference pipeline). Known values: threat, insider_threat, identity_vulnerability. Older or demo rows may still carry legacy strings until backfilled.

created_after
string<date-time>

Return cases whose created_at is greater than or equal to this timestamp.

created_before
string<date-time>

Return cases whose created_at is less than or equal to this timestamp.

page_size
integer
default:50
Required range: x <= 200
next_cursor
string<uuid>

Case id from the last item of the previous page.

Response

Cursor-paginated list of hydrated cases with full threat events

next_cursor
string | null
data
object[]