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

# Retrieve Alert

> Get a single alert by ID

## Path Parameters

<ParamField path="id" type="string" required>Alert ID (`alt_*`).</ParamField>

## Response

Returns a single `Alert` (see [List Alerts](/api-reference/monitoring/alerts/list)
for the shape).

## Errors

* **404** — alert does not exist or belongs to another org.

<RequestExample>
  ```bash cURL theme={null}
  curl "https://api.signa.so/v1/alerts/alt_01HK7M..." \
    -H "Authorization: Bearer $SIGNA_API_KEY"
  ```

  ```ts TypeScript theme={null}
  const alert = await signa.alerts.retrieve('alt_01HK7M...');
  ```
</RequestExample>
