---
title: "Get alert history"
method: GET
path: "/api/alerts/history"
tags: ["Alerts"]
---

# Get alert history

`GET /api/alerts/history`

View the history of triggered alerts for the current project.

## Query parameters

- `page` integer
- `limit` integer

## Response `200`

Alert history

- union
  - AlertHistoryEntry[]
    - `id` string, uuid
    - `targetType` string
    - `targetId` string
    - `targetName` string
    - `type` string
    - `message` string
    - `status` string
    - `timestamp` string, date-time
    - `notificationProvider` string
    - `metadata` object
      - `errorMessage` string, nullable
  - object
    - `pagination` object
      - `total` integer
      - `page` integer
      - `limit` integer
      - `totalPages` integer
      - `hasNextPage` boolean
      - `hasPrevPage` boolean
    - `data` AlertHistoryEntry[]
      - `id` string, uuid
      - `targetType` string
      - `targetId` string
      - `targetName` string
      - `type` string
      - `message` string
      - `status` string
      - `timestamp` string, date-time
      - `notificationProvider` string
      - `metadata` object
        - `errorMessage` string, nullable

## Other responses

- `401` — Authentication required or token invalid
- `403` — Insufficient permissions
- `500` — Failed to fetch alert history

---

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