Skip to main content
GET
/
incidents
/
{id}
curl "https://kodostatus.com/api/v1/incidents/inc_abc123" \
  -H "X-API-Key: your_api_key"
{
  "id": "uuid",
  "title": "Database connectivity issues",
  "status": "investigating",
  "severity": "major",
  "started_at": "2024-01-15T10:30:00Z",
  "updates": [
    {
      "id": "uuid",
      "status": "investigating",
      "message": "We are looking into this",
      "created_at": "2024-01-15T10:35:00Z"
    }
  ]
}

Path Parameters

id
string
required
The incident ID

Response

id
string
Unique incident identifier
title
string
Incident title
status
string
Current status
severity
string
Severity level
started_at
string
ISO 8601 timestamp
updates
array
curl "https://kodostatus.com/api/v1/incidents/inc_abc123" \
  -H "X-API-Key: your_api_key"
{
  "id": "uuid",
  "title": "Database connectivity issues",
  "status": "investigating",
  "severity": "major",
  "started_at": "2024-01-15T10:30:00Z",
  "updates": [
    {
      "id": "uuid",
      "status": "investigating",
      "message": "We are looking into this",
      "created_at": "2024-01-15T10:35:00Z"
    }
  ]
}