---
title: "Get Alert"
method: GET
path: "/api/v2/alerts/{id}"
tags: ["Alerts"]
---

# Get Alert

`GET /api/v2/alerts/{id}`

Retrieves a specific alert by ID

## Path parameters

- `id` string, required

## Response `200`

Successfully retrieved alert

- AlertResponseEnvelope
  - `data` AlertResponse
    - `dashboardId` string, nullable — Dashboard ID for tile-based alerts.
    - `tileId` string, nullable — Tile ID for tile-based alerts.
    - `savedSearchId` string, nullable — Saved search ID for saved_search alerts.
    - `groupBy` string, nullable — Group-by key for saved search alerts.
    - `threshold` number — Threshold value for triggering the alert.
    - `interval` '1m' | '5m' | '15m' | '30m' | '1h' | '6h' | '12h' | '1d' — Evaluation interval.
    - `source` 'saved_search' | 'tile' — Alert source type.
    - `thresholdType` 'above' | 'below' — Threshold comparison direction.
    - `channel` AlertChannel
      - `type` 'webhook', required — Channel type.
      - `webhookId` string, required — Webhook destination ID.
    - `name` string, nullable — Human-friendly alert name.
    - `message` string, nullable — Alert message template.
    - `id` string — Unique alert identifier.
    - `state` 'ALERT' | 'OK' | 'INSUFFICIENT_DATA' | 'DISABLED' — Current alert state.
    - `teamId` string — Team identifier.
    - `silenced` AlertSilenced — Silencing metadata.
      - `by` string, nullable — User ID who silenced the alert.
      - `at` string, date-time — Silence start timestamp.
      - `until` string, date-time — Silence end timestamp.
    - `createdAt` string, date-time, nullable — Creation timestamp.
    - `updatedAt` string, date-time, nullable — Last update timestamp.

## Other responses

- `401` — Unauthorized
- `404` — Alert not found

## Changes

- **2026-02-02** `e856dc2f1417` — 1 breaking, 17 warning, 1 info
  - the `data` response's property type/format changed from `object`/`` to ``/`` for status `200`
  - removed the optional property `data/channel` from the response with the `200` status
  - removed the optional property `data/createdAt` from the response with the `200` status
  - removed the optional property `data/dashboard` from the response with the `200` status
  - …15 more
- **2026-01-30** `ed852374c451` — 1 breaking, 19 info
  - the `data` response's property type/format changed from ``/`` to `object`/`` for status `200`
  - removed the non-success response with the status `403`
  - added the optional property `data/channel` to the response with the `200` status
  - added the optional property `data/createdAt` to the response with the `200` status
  - …16 more

[Change history](https://skmtc.dev/hyperdxio/apis/hyperdx-external-api/changes/api/v2/alerts/:id/get.md)

---

[API](https://skmtc.dev/hyperdxio/apis/hyperdx-external-api.md) · [All operations](https://skmtc.dev/hyperdxio/apis/hyperdx-external-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/hyperdxio/hyperdx-external-api/revisions/60a08cf40234/schema)
