curl --request GET \
--url https://api.example.com/incidents/{incident_id} \
--header 'Authorization: Bearer <token>'{
"id": "<string>",
"monitor_id": "<string>",
"metric_id": "<string>",
"project_id": "<string>",
"status": "<string>",
"created_at": "<string>",
"updated_at": "<string>",
"rca": {
"status": "<string>",
"result": {
"root_cause": "<string>",
"classification": "<string>",
"suggested_fix": "<string>",
"confidence": "<string>"
},
"failing_trace_ids": [
"<string>"
]
},
"associated_traces": [
{
"id": "<string>",
"project_id": "<string>",
"project_name": "<string>",
"otel_trace_id": "<string>",
"service_name": "<string>",
"created_at": "<string>"
}
]
}Loads a single incident with timeline context, linked metric or monitor references, and metadata.
curl --request GET \
--url https://api.example.com/incidents/{incident_id} \
--header 'Authorization: Bearer <token>'{
"id": "<string>",
"monitor_id": "<string>",
"metric_id": "<string>",
"project_id": "<string>",
"status": "<string>",
"created_at": "<string>",
"updated_at": "<string>",
"rca": {
"status": "<string>",
"result": {
"root_cause": "<string>",
"classification": "<string>",
"suggested_fix": "<string>",
"confidence": "<string>"
},
"failing_trace_ids": [
"<string>"
]
},
"associated_traces": [
{
"id": "<string>",
"project_id": "<string>",
"project_name": "<string>",
"otel_trace_id": "<string>",
"service_name": "<string>",
"created_at": "<string>"
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Incident identifier.
Successful Response
Single incident with optional RCA payload and linked traces.