> ## Documentation Index
> Fetch the complete documentation index at: https://docs.larm.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Get disruption

> Returns a disruption with its timeline and affected components

Requires `incidents:read` permission.

<ParamField path="id" type="string" required>
  Disruption UUID
</ParamField>

<ResponseExample>
  ```json 200 theme={null}
  {
    "data": {
      "id": "550e8400-e29b-41d4-a716-446655440000",
      "title": "API outage",
      "type": "disruption",
      "status": "identified",
      "impact": "major",
      "auto_created": false,
      "started_at": "2026-03-28T12:00:00Z",
      "resolved_at": null,
      "updates": [
        {
          "id": "770e8400-e29b-41d4-a716-446655440000",
          "status": "identified",
          "body": "Root cause found in database connection pool.",
          "posted_at": "2026-03-28T12:30:00Z",
          "posted_by": "user@example.com"
        },
        {
          "id": "660e8400-e29b-41d4-a716-446655440000",
          "status": "investigating",
          "body": "Investigating API errors.",
          "posted_at": "2026-03-28T12:00:00Z",
          "posted_by": "user@example.com"
        }
      ],
      "affected_components": [
        {
          "id": "880e8400-e29b-41d4-a716-446655440000",
          "name": "API",
          "status": "major_outage"
        }
      ],
      "inserted_at": "2026-03-28T12:00:00Z",
      "updated_at": "2026-03-28T12:30:00Z"
    }
  }
  ```
</ResponseExample>
