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.Documentation Index
Fetch the complete documentation index at: https://docs.offthehook.dev/llms.txt
Use this file to discover all available pages before exploring further.
Request
Path parameters
The subscription ID (e.g.
sub_2QkP9aB7xN...).The event ID (e.g.
evt_8xN9kP2QbA...).Response
200 OK — a singleEventView object with the same shape as items in the list events response.
Unique event ID. This value is sent in the
webhook-id delivery header and is your idempotency key for deduplication.The subscription this event belongs to.
The event type, e.g.
wallet.transfer.broadcasted or service.ping.CAIP-2 identifier for the chain this event originated on.
null for service events like service.ping.Current delivery status:
pending, delivered, or failed.Monotonic count of successful deliveries across all dispatch cycles.
The HTTP status code from your endpoint on the last attempt.
null if no HTTP response was received.Truncated response body from the last attempt.
null if no body was received.The exact Standard Webhooks envelope sent to your endpoint.
ISO 8601 timestamp of when this event was created.
Errors
| Code | HTTP | Description |
|---|---|---|
not_found | 404 | The event ID does not exist, does not belong to the given subscription, or the subscription belongs to a different API key. |
unauthorized | 401 | The Authorization header is missing or the key is invalid. |