GET/v1/webhook-deliveries/:id

Retrieve a webhook delivery

Returns a single WebhookDelivery by ID — including the response body your endpoint returned (truncated to 8KB) for debugging.

Parameters

stringRequired

Delivery ID in the path. Of the form whd_….

Returns

The WebhookDelivery object.

Errors

StatusCodeDescription
404not_found

No delivery with that ID exists on this account.

Retrieve a delivery
curl https://api.aeses.io/v1/webhook-deliveries/whd_01HXZ12345ABCDEFGHJKMNPQRS \
-H "x-api-key: sk_live_..."
Response
{
"id": "whd_01HXZ12345ABCDEFGHJKMNPQRS",
"object": "webhook_delivery",
"event_id": "evt_01HXYZ...",
"event_type": "deposit.completed",
"endpoint_url": "https://example.com/webhooks/aeses",
"attempt": 3,
"status": "failed",
"response_status": 500,
"response_body": "Internal Server Error",
"response_duration_ms": 9874,
"next_attempt_at": 1731603790,
"created_at": 1731600190
}