Skip to main content
GET
/
api
/
v1
/
incidents
List incidents
curl --request GET \
  --url https://app.larm.dev/api/v1/incidents
{
  "data": [
    {
      "id": "550e8400-e29b-41d4-a716-446655440000",
      "title": "API outage",
      "type": "incident",
      "status": "investigating",
      "impact": "major",
      "auto_created": false,
      "started_at": "2026-03-28T12:00:00Z",
      "resolved_at": null,
      "inserted_at": "2026-03-28T12:00:00Z",
      "updated_at": "2026-03-28T12:00:00Z"
    }
  ]
}
Requires incidents:read permission.
status
string
Filter by status: investigating, identified, monitoring, resolved, scheduled, in_progress, completed
type
string
Filter by type: incident or maintenance
{
  "data": [
    {
      "id": "550e8400-e29b-41d4-a716-446655440000",
      "title": "API outage",
      "type": "incident",
      "status": "investigating",
      "impact": "major",
      "auto_created": false,
      "started_at": "2026-03-28T12:00:00Z",
      "resolved_at": null,
      "inserted_at": "2026-03-28T12:00:00Z",
      "updated_at": "2026-03-28T12:00:00Z"
    }
  ]
}