Event Streaming - Receives Webhook Messages
| Time | Status | User Agent | |
|---|---|---|---|
| Make a request to see history. |
URL Expired
The URL for this request expired after 30 days.
Compute Unit Value: 10 (fixed)
Allow-listed IPs
To enhance security and prevent DDoS attacks, allow-list the following IP addresses that will hit your Events Webhook endpoints:
35.245.225.13134.150.141.9134.85.141.205
Info:
To get a list of supported protocols, networks, and their events, please refer to this page.
The webhook send payload
| Field | Type | Required | Notes |
|---|---|---|---|
| protocol | string | required | |
| network | string | required | |
| chain_id | string | required | |
| event_type | string | required | enum |
| data | object | required | |
| x-bd-webhooks-signature | string | required |
{
"event_type": "unified_block"
}
Response to webhook receive
- 200: Successful response
- 400: Bad request
Example cURL Request
curl --request POST \
--url https://svc.blockdaemon.com/streaming/v2/ \
--header 'authorization: Bearer ••••' \
--header 'content-type: application/json' \
--data '{
"event_type": "unified_block"
}'
Click Try It! to start a request and see the response here!