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

# List webhooks

> GET /api/v1/comms/webhooks — list registered webhook endpoints.

List webhook endpoints registered for your workspace.

**Scope:** `comms_webhooks`

## Request

```bash theme={null}
curl "https://osis.co/api/v1/comms/webhooks" \
  -H "Authorization: Bearer $COMMS_API_KEY"
```

## Response

```json theme={null}
{
  "webhooks": [
    {
      "id": "wh_…",
      "url": "https://hooks.yourapp.com/comms",
      "events": ["message.received", "message.sent"]
    }
  ]
}
```

## See also

* [Create a webhook](/messages-api/create-webhook)
* [Webhooks guide](/guides/webhooks)
