Skip to main content
GET
/
v1
/
anomalies
/
{id}
Get a single anomaly by ID
curl --request GET \
  --url https://api.trulayer.ai/v1/anomalies/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "tenant_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "type": "latency_spike",
  "severity": "low",
  "description": "<string>",
  "detected_at": "2023-11-07T05:31:56Z",
  "trace_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "metadata": {},
  "created_at": "2023-11-07T05:31:56Z"
}

Documentation Index

Fetch the complete documentation index at: https://docs.trulayer.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

SDK API key (tl_...) or Clerk session JWT

Path Parameters

id
string<uuid>
required

Response

Anomaly detail

id
string<uuid>
required
tenant_id
string<uuid>
required
type
enum<string>
required
Available options:
latency_spike,
error_rate_spike,
volume_anomaly
severity
enum<string>
required
Available options:
low,
medium,
high,
critical
description
string
required
detected_at
string<date-time>
required
trace_id
string<uuid> | null
metadata
object
created_at
string<date-time>