Skip to main content
An event represents a single incoming HTTP request that was captured by one of your endpoints. Each event stores the full request headers, body, and delivery status.

List events

Returns a paginated list of events for an endpoint, ordered by received time (newest first).
Path parameters
string
required
The endpoint ID.
Query parameters
string
Filter by delivery status. One of: received, delivered, failed, dead_letter.
string
Return only events received at or after this time. Accepts an ISO 8601 date string (e.g. 2026-04-01T00:00:00.000Z).
string
Full-text search within the event payload body.
number
default:"1"
Page number to retrieve.
number
default:"50"
Number of results per page.
Response
array
required
List of event objects.
object
required
Pagination metadata.

Get an event

Returns a single event with its full payload and delivery history.
Path parameters
string
required
The endpoint ID.
string
required
The event ID.
Response

Replay an event

Re-enqueues an event for delivery to all currently configured destinations. Use this to retry a failed event or to test a new destination against a real payload.
Path parameters
string
required
The endpoint ID.
string
required
The event ID.
Response
boolean
required
true when the event was successfully enqueued.
string
Internal reference ID for the delivery job.