BetaThe V4 API is in beta — endpoints and functionality may change.
Webhooksv4

List webhook deliveries

GET/webhooks/{webhookId}/deliveries

Recent delivery attempts for a webhook. Also available at /webhooks/{webhookId}/logs.

Path parameters

webhookIdRequiredstring

Unique identifier of the webhook subscription, prefixed with wh_. Returned when you create a webhook or by the List webhooks endpoint.

Headers

AuthorizationRequiredstring

Your API key, sent as a bearer token: Authorization: Bearer <api_key>. Editing this stays in sync with the API key box on the right.

Bearer

Query parameters

limitoptionalinteger

Maximum number of items to return per page. Must be between 1 and 200; defaults to 50. Combine with cursor to paginate.

cursoroptionalstring

Opaque pagination cursor. Pass the next_cursor value from a previous response to fetch the next page; omit it on the first request.

Returns

dataoptionalWebhookDelivery[]

Array of WebhookDelivery

idoptionalstring

Delivery id (wdel_...).

webhook_idoptionalstring
event_idoptionalstring
event_typeoptionalstring
statusoptionalstring
attempt_countoptionalinteger
response_statusoptionalinteger | null
last_attempt_atoptionalinteger | null
next_attempt_atoptionalinteger | null
created_atoptionalinteger
has_moreoptionalboolean
next_cursoroptionalstring | null

Response codes

200A page of deliveries
401Your API key is missing or invalid. Pass it as a bearer token.
404No webhook was found with the provided `webhookId`.

Sends a live request with your values and shows the real response below. Your key is stored only in this browser.

Request
curl -X GET https://api.blooio.com/v4/webhooks/wh_a1b2c3d4/deliveries?limit=50&cursor=string \  -H "Authorization: Bearer bl_live_..."
Response objectexample
{  "data": [    {      "id": "obj_a1b2c3d4",      "webhook_id": "wh_a1b2c3d4",      "event_id": "evt_a1b2c3d4",      "event_type": "string",      "status": "active",      "attempt_count": 3,      "response_status": 0,      "last_attempt_at": 0,      "next_attempt_at": 0,      "created_at": 0    }  ],  "has_more": true,  "next_cursor": "string"}