> ## 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 Webhook Endpoints

> List webhook endpoints (secrets redacted)

## Query Parameters

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

## Response

`object: "list"` envelope of `Webhook` objects with `secret` redacted.

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

  ```ts TypeScript theme={null}
  const endpoints = await signa.webhooks.list();
  ```
</RequestExample>
