Skip to main content
Use this endpoint to inspect any single event in a subscription’s delivery history. The response includes the current status, attempt and delivery counts, the last HTTP response from your endpoint, and the complete Standard Webhooks payload. This is the most direct way to investigate a specific delivery failure.

Request

Path parameters

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

Response

200 OK — a single EventView object with the same shape as items in the list events response.
string
Unique event ID. This value is sent in the webhook-id delivery header and is your idempotency key for deduplication.
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.
string
Current delivery status: pending, delivered, or failed.
integer
Number of delivery attempts in the current dispatch cycle. Resets to 0 on retry.
integer
Monotonic count of successful deliveries across all dispatch cycles.
integer | null
The HTTP status code from your endpoint on the last attempt. null if no HTTP response was received.
string | null
Truncated response body from the last attempt. null if no body was received.
object
The exact Standard Webhooks envelope sent to your endpoint.
string
ISO 8601 timestamp of when this event was created.

Errors