> ## 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.

# List Alerts for Watch

> Alerts scoped to a single watch

## Path Parameters

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

## Query Parameters

<ParamField query="limit" type="integer" default="20">Page size (1--100).</ParamField>
<ParamField query="cursor" type="string">Opaque cursor.</ParamField>

## Response

Same envelope as [List Alerts](/api-reference/monitoring/alerts/list), filtered
to alerts produced by this watch.

## Errors

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

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

  ```ts TypeScript theme={null}
  const alerts = await signa.watches.listAlerts('wat_01HK7M...', { limit: 50 });
  ```
</RequestExample>
