> For the complete documentation index, see [llms.txt](https://docs.absolutelabs.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.absolutelabs.io/features/flows/entry-sources/webhook-source.md).

# Webhook source

## Enablement

1. Go to the Flows module.
2. Drag and drop the Webhook source block into your flow.
3. Save the flow as a draft and open the flow again. You will not be assigned a webhook endpoint until you save the flow as a draft.
4. Copy the endpoint from the Webhook source block. You can now send POST requests to this endpoint to manually push wallets into the flow.

### Request URL example

```
https://webhook.absolutelabs.app/{ID of your Flow}/  
```

### Request headers

```
- X-API-Key: {your key}
- Content-Type: application/json
```

### Request body example

```
[
"0xaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"0xbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb",
"0xccccccccccccccccccccccccccccccccccccccc"
]
```
