> For the complete documentation index, see [llms.txt](https://docs.alignlabs.dev/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.alignlabs.dev/align-api/webhooks/get-all-webhooks.md).

# Get All Webhooks

## GET /v0/webhooks

> Get all webhooks

```json
{"openapi":"3.0.0","info":{"title":"Developer API","version":"0"},"servers":[{"url":"https://api.alignlabs.dev","description":"Production server"},{"url":"https://api-sandbox.alignlabs.dev","description":"Sandbox server"}],"paths":{"/v0/webhooks":{"get":{"summary":"Get all webhooks","parameters":[{"name":"Api-Key","in":"header","description":"Your secret API key, available in the developer dashboard. Include this header on every request to authenticate your application.","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Webhooks retrieved successfully","content":{"application/json":{"schema":{"type":"object","properties":{"items":{"type":"array","items":{"$ref":"#/components/schemas/EventsWebhook"}}}}}}}}}}},"components":{"schemas":{"EventsWebhook":{"type":"object","properties":{"id":{"type":"string","description":"Unique identifier of the webhook"},"url":{"type":"string","maxLength":1024,"description":"URL where webhook events will be sent"},"status":{"type":"string","description":"Current status of the webhook"},"created_at":{"type":"string","format":"date-time","description":"When the webhook was created"}},"required":["id","url","status","created_at"]}}}}
```
