Skip to main content
This endpoint returns the delivery history for a subscription in reverse chronological order. Each item in the list represents one webhook event — including the payload that was delivered, the current delivery status, how many attempts were made, and the last HTTP response received from your endpoint.

Request

Path parameters

string
required
The subscription ID (e.g. sub_2QkP9aB7xN...).

Query parameters

integer
Number of events to return per page. Must be between 1 and 200. Defaults to 50.
string
Opaque cursor returned by the previous response. Pass this value verbatim to fetch the next page. Omit or leave empty to start from the most recent events.

Response

200 OK — a paginated list of EventView objects.
string
Unique event ID. This value is sent in the webhook-id delivery header — use it as your idempotency key to deduplicate retried deliveries.
string
The subscription this event belongs to.
string
The event type, e.g. wallet.transfer.broadcasted or service.ping.
string | null
CAIP-2 identifier for the chain this event originated on. null for service events like service.ping that are not chain-specific.
string
Current delivery status. One of:
  • pending — queued and awaiting delivery or in the retry schedule.
  • delivered — your endpoint returned a 2xx response.
  • failed — all automatic retry attempts were exhausted without a successful delivery.
integer
Number of delivery attempts in the current dispatch cycle. This counter resets to 0 each time you call POST /retry.
integer
Monotonically increasing count of successful deliveries for this event across all dispatch cycles. Normally 0 or 1; greater than 1 only if the event was retried after a prior successful delivery.
integer | null
The HTTP status code returned by your endpoint on the most recent delivery attempt. null if no attempt has been made yet or the request did not receive an HTTP response (e.g. network timeout).
string | null
The response body returned by your endpoint, truncated for storage. null if no response body was received.
object
The exact Standard Webhooks envelope that was (or will be) sent to your endpoint, including id, kind, date, and data.
string
ISO 8601 timestamp of when this event was first created.
string | null
Cursor for the next page. null when you have reached the last page.

Errors