Skip to main content
GET
/
v1
/
webhooks
/
events
/
{id}
/
deliveries
List deliveries for an event
curl --request GET \
  --url https://api.antonpayments.com/v1/webhooks/events/{id}/deliveries \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "event_id": "<string>",
      "subscription_id": "<string>",
      "status": "pending",
      "url": "<string>",
      "attempts": 123,
      "max_attempts": 123,
      "created_at": "2026-04-15T14:30:00Z",
      "updated_at": "2026-04-15T14:30:00Z",
      "request_headers": {},
      "response_status": 123,
      "response_body": "<string>",
      "response_headers": {},
      "next_retry_at": "2026-04-15T14:30:00Z",
      "error": "<string>",
      "duration_ms": 123,
      "delivered_at": "2026-04-15T14:30:00Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

API keys are opaque strings prefixed by environment:

  • ak_live_* — production keys, accepted only on api.antonpayments.com.
  • ak_test_* — sandbox keys, accepted only on api.antonpayments.dev.

Include your key in the Authorization header: Bearer ak_test_....

Path Parameters

id
string
required
Pattern: ^evt_[a-zA-Z0-9]+$

Response

Delivery history.

data
object[]
required