BillKit/Docs Console
Webhook endpoints

List webhook endpoint deliveries

List the delivery attempts made to one webhook endpoint, newest first.

GET/v1/webhook_endpoints/{endpoint_id}/deliveries
Operation list_webhook_endpoint_deliveries · Scope webhook_endpoints:read · Spec snapshot 2026-09-13

Parameters

ParameterDescription
endpoint_idstring · pathrequiredNo description in the spec.
limitinteger · queryoptionalDefaults to 10. Between 1 and 100.
starting_afterstring | null · queryoptionalAt most 128 characters.

Cursor-paginated. limit caps a page and starting_after takes the last id you saw.

Returns

Returns a page of WebhookDeliveryResponse objects. data holds the page and has_more says whether another one exists. Page forward by passing the last id of the page as starting_after; a short page is not the end of the list.

Errors

Status Cause
401 Missing or invalid API key.
403 Key is missing the webhook_endpoints:read scope.
404 No such object, or it belongs to the other mode.
422 Validation Error
429 Rate limited. Back off and retry.
Request · curl
curl -X GET https://api.billkit.eu/v1/webhook_endpoints/we_9XKp2vQ1/deliveries \
  -H "Authorization: Bearer $BILLKIT_SECRET_KEY"
Response · 200 OK
{
  "data": [
    {
      "attempt_count": 0,
      "created": 1789392000,
      "delivered_at": 1789392000,
      "endpoint_id": "we_9XKp2vQ1",
      "event_id": "evt_9XKp2vQ1",
      "id": "obj_9XKp2vQ1",
      "last_error": "string",
      "last_response_body_excerpt": "string",
      "last_response_code": 0,
      "next_attempt_at": 1789392000,
      "object": "webhook_delivery",
      "status": "pending"
    }
  ],
  "has_more": false,
  "object": "list"
}