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

# Get Incident

> Get a single incident by ID with all updates

## Path Parameters

<ParamField path="id" type="string" required>
  The incident ID
</ParamField>

## Response

<ResponseField name="id" type="string">
  Unique incident identifier
</ResponseField>

<ResponseField name="title" type="string">
  Incident title
</ResponseField>

<ResponseField name="status" type="string">
  Current status
</ResponseField>

<ResponseField name="severity" type="string">
  Severity level
</ResponseField>

<ResponseField name="started_at" type="string">
  ISO 8601 timestamp
</ResponseField>

<ResponseField name="resolved_at" type="string">
  ISO 8601 timestamp when resolved (null if ongoing)
</ResponseField>

<ResponseField name="created_at" type="string">
  ISO 8601 timestamp when incident was created
</ResponseField>

<ResponseField name="services" type="array">
  Affected services linked to this incident
</ResponseField>

<ResponseField name="updates" type="array">
  <Expandable title="update object">
    <ResponseField name="id" type="string">
      Update ID
    </ResponseField>

    <ResponseField name="status" type="string">
      Status at time of update
    </ResponseField>

    <ResponseField name="message" type="string">
      Update message
    </ResponseField>

    <ResponseField name="created_at" type="string">
      ISO 8601 timestamp
    </ResponseField>
  </Expandable>
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl "https://kodostatus.com/api/v1/incidents/550e8400-e29b-41d4-a716-446655440000" \
    -H "X-API-Key: your_api_key"
  ```
</RequestExample>

<ResponseExample>
  ```json theme={null}
  {
    "id": "550e8400-e29b-41d4-a716-446655440000",
    "title": "Database connectivity issues",
    "status": "investigating",
    "severity": "major",
    "started_at": "2026-01-15T10:30:00.000Z",
    "resolved_at": null,
    "created_at": "2026-01-15T10:30:00.000Z",
    "services": [
      { "id": "660e8400-e29b-41d4-a716-446655440000", "name": "API" }
    ],
    "updates": [
      {
        "id": "770e8400-e29b-41d4-a716-446655440000",
        "status": "investigating",
        "message": "We are looking into this",
        "created_at": "2026-01-15T10:35:00.000Z"
      }
    ]
  }
  ```
</ResponseExample>
