List the caller's incidents (newest first, paginated)
curl --request GET \
--url https://api.tuteliq.ai/api/v1/incidents/ \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.tuteliq.ai/api/v1/incidents/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.tuteliq.ai/api/v1/incidents/"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)val client = OkHttpClient()
val request = Request.Builder()
.url("https://api.tuteliq.ai/api/v1/incidents/")
.get()
.addHeader("Authorization", "Bearer <token>")
.build()
val response = client.newCall(request).execute()import Foundation
let url = URL(string: "https://api.tuteliq.ai/api/v1/incidents/")!
var request = URLRequest(url: url)
request.httpMethod = "GET"
request.timeoutInterval = 10
request.allHTTPHeaderFields = ["Authorization": "Bearer <token>"]
let (data, _) = try await URLSession.shared.data(for: request)
print(String(decoding: data, as: UTF8.self))using RestSharp;
var options = new RestClientOptions("https://api.tuteliq.ai/api/v1/incidents/");
var client = new RestClient(options);
var request = new RestRequest("");
request.AddHeader("Authorization", "Bearer <token>");
var response = await client.GetAsync(request);
Console.WriteLine("{0}", response.Content);
falseList the caller's incidents (newest first, paginated)
Read-only paginated listing of incidents recorded under this API key’s account. Each row is non-PII metadata by default; pass include_summary=true to include the decrypted incident summary (extra credits per row). BYOK incidents return the hybrid envelope on the summary field and list the field name in _e2e_envelope_fields.
GET
/
api
/
v1
/
incidents
/
List the caller's incidents (newest first, paginated)
curl --request GET \
--url https://api.tuteliq.ai/api/v1/incidents/ \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.tuteliq.ai/api/v1/incidents/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.tuteliq.ai/api/v1/incidents/"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)val client = OkHttpClient()
val request = Request.Builder()
.url("https://api.tuteliq.ai/api/v1/incidents/")
.get()
.addHeader("Authorization", "Bearer <token>")
.build()
val response = client.newCall(request).execute()import Foundation
let url = URL(string: "https://api.tuteliq.ai/api/v1/incidents/")!
var request = URLRequest(url: url)
request.httpMethod = "GET"
request.timeoutInterval = 10
request.allHTTPHeaderFields = ["Authorization": "Bearer <token>"]
let (data, _) = try await URLSession.shared.data(for: request)
print(String(decoding: data, as: UTF8.self))using RestSharp;
var options = new RestClientOptions("https://api.tuteliq.ai/api/v1/incidents/");
var client = new RestClient(options);
var request = new RestRequest("");
request.AddHeader("Authorization", "Bearer <token>");
var response = await client.GetAsync(request);
Console.WriteLine("{0}", response.Content);
falseAuthorizations
bearerAuthapiKeyHeader
API key as Bearer token
Query Parameters
Filter by risk_category (e.g. "bullying", "grooming").
Filter by risk_level.
Available options:
low, medium, high, critical Filter by status.
Available options:
new, reviewing, escalated, resolved, dismissed Filter by source modality.
Available options:
text, voice, image, video, video_stream ISO 8601 inclusive lower bound on created_at.
ISO 8601 exclusive upper bound on created_at.
1..100, default 25.
Opaque next_cursor from the previous page.
Set "true" to include decrypted summary text on each row (extra credits per row).
Response
200
Default Response