# Create Webhook

## POST /v0/webhooks

> Create new events webhook

```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":{"post":{"summary":"Create new events webhook","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"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"url":{"type":"string","maxLength":1024}},"required":["url"]}}}},"responses":{"201":{"description":"Developer fee settings updated successfully","content":{"application/json":{"schema":{"$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"]}}}}
```
