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

# Webhooks

> Receive incoming webhooks through Kurrier's unified API

Kurrier lets you **register outbound webhooks** so your app can react to events like
messages being received. You can create the webhooks on your dashboard.

***

## Event types

Right now Kurrier plans supports the following event names (this list may grow over time):

* `message.received`

***

## Webhook delivery format

Webhook POST request example:

```json theme={null}
{
   "event": "message.received",
   "data": {
     "message": {...},
     "rawEmail": ...
   }
}
```
