---
title: "List all outages"
method: GET
path: "/v2/outages"
tags: ["Outages"]
---

# List all outages

`GET /v2/outages`

Returns a paginated list of detected outages.

## Query parameters

- `page` number
- `status` 'all' | 'ongoing' | 'resolved'
- `type` 'all' | 'manual' | 'monitor'
- `search` string

## Response `200`

List of outages

- object
  - `outages` Outage[]
    - `uuid` string
    - `startDate` string, date-time
    - `endDate` string, date-time, nullable
    - `durationMs` number — Duration in milliseconds
    - `statusCode` number
    - `description` string
    - `isResolved` boolean
    - `detectedLocation` string
    - `confirmedLocations` string
    - `protocol` string
    - `severity` 'critical' | 'major' | 'minor'
    - `incidentNumber` number, nullable — Auto-incrementing per-project incident number
    - `acknowledgedAt` string, date-time, nullable
    - `acknowledgedBy` object, nullable
      - `uuid` string
      - `email` string
      - `name` string
    - `reportedBy` object, nullable — User who reported the incident (manual incidents only)
      - `uuid` string
      - `email` string
      - `name` string
    - `monitor` object, nullable
      - `uuid` string
      - `name` string
      - `url` string
      - `protocol` string
    - `escalationPolicy` object, nullable
      - `uuid` string
      - `name` string
      - `alertedSteps` number
      - `totalSteps` number
    - `summary` string, nullable — User-written summary (rich text)
    - `aiSummary` string, nullable — AI-generated summary
    - `postmortem` string, nullable — Post-mortem analysis (rich text)
    - `escalationPolicyUuid` string, nullable
  - `hasNextPage` boolean
  - `total` number
  - `ongoingCount` number
  - `page` number
  - `resultsPerPage` number

---

[API](https://skmtc.dev/hyperping/apis/hyperping-api.md) · [All operations](https://skmtc.dev/hyperping/apis/hyperping-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/hyperping/hyperping-api/revisions/953c52272fa8/schema)
