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

# List Webhooks

> Retrieve all registered webhook endpoints

## Method Signature

```typescript theme={null}
align.webhooks.list(): Promise<WebhookListResponse>
```

## Example

```typescript theme={null}
const response = await align.webhooks.list();

for (const webhook of response.items) {
  console.log(`ID: ${webhook.webhook_id}`);
  console.log(`URL: ${webhook.url}`);
  console.log(`Events: ${webhook.events.join(", ")}`);
}
```

## Related Methods

<CardGroup cols={2}>
  <Card title="Create Webhook" icon="bell" href="/docs/api/webhooks/create">
    Register a new webhook
  </Card>
</CardGroup>
