GET/v1/webhook-deliveries

List webhook deliveries

Returns a paginated list of webhook delivery attempts, newest first.

Parameters

stringOptional

Return only deliveries for a single event.

stringOptional

Filter by event type (e.g. deposit.completed).

enumOptional

pending, succeeded, failed, or exhausted.

integerOptional

Unix timestamp.

integerOptional

Unix timestamp.

integerOptionalDefault: 25

Between 1 and 100.

stringOptional

Pagination cursor.

Returns

A paginated list of WebhookDelivery objects.

List failed deliveries
curl "https://api.aeses.io/v1/webhook-deliveries?status=failed&limit=10" \
-H "x-api-key: sk_live_..."
Response
{
"object": "list",
"data": [
  {
    "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,
    "next_attempt_at": 1731603790,
    "created_at": 1731600190
  }
],
"has_more": false,
"next_cursor": null
}