Skip to main content
GET
/
incidents
curl "https://kodostatus.com/api/v1/incidents?status=investigating&limit=10" \
  -H "X-API-Key: your_api_key"
{
  "incidents": [
    {
      "id": "uuid",
      "title": "Database connectivity issues",
      "status": "investigating",
      "severity": "major",
      "started_at": "2024-01-15T10:30:00Z",
      "resolved_at": null,
      "services": [{ "id": "uuid", "name": "API" }]
    }
  ]
}

Query Parameters

status
string
Filter by status: investigating, identified, monitoring, resolved
limit
integer
default:"50"
Maximum number of incidents to return (max: 100)

Response

incidents
array
curl "https://kodostatus.com/api/v1/incidents?status=investigating&limit=10" \
  -H "X-API-Key: your_api_key"
{
  "incidents": [
    {
      "id": "uuid",
      "title": "Database connectivity issues",
      "status": "investigating",
      "severity": "major",
      "started_at": "2024-01-15T10:30:00Z",
      "resolved_at": null,
      "services": [{ "id": "uuid", "name": "API" }]
    }
  ]
}