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

# List Webhooks

> Get all webhooks configured for your tenant

## Endpoint

## Example

```bash theme={null}
curl https://api.wede.pt/v1/webhooks \
  -H "x-wede-api-key: wede_live_YOUR_KEY"
```

## Response

```json theme={null}
{
  "webhooks": [
    {
      "id": "wh-abc123",
      "url": "https://yourapp.com/webhooks/wede",
      "events": ["EMERGENCY"],
      "created_at": "2026-05-01T00:00:00Z"
    }
  ],
  "total": 1
}
```
