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

# Create Webhook

> Register a webhook endpoint for event delivery.

## POST /v1/webhooks

### Body Parameters

| Parameter | Type   | Required | Description                       |
| --------- | ------ | -------- | --------------------------------- |
| `url`     | string | ✓        | HTTPS endpoint URL                |
| `events`  | array  | ✓        | Event types to subscribe to       |
| `secret`  | string |          | Secret for signature verification |

### Example Request

```bash theme={null}
curl -X POST https://api.boobie.ai/v1/webhooks \
  -H "Authorization: Bearer YOUR_BOOBIE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "url": "https://yourapp.com/webhooks/boobie",
    "events": ["engine.job.completed", "ip.registered"],
    "secret": "your_webhook_secret"
  }'
```

### Response

```json theme={null}
{
  "id": "wh_abc123",
  "url": "https://yourapp.com/webhooks/boobie",
  "events": ["engine.job.completed", "ip.registered"],
  "status": "active",
  "created_at": "2026-06-12T09:00:00Z"
}
```
