Events API: List and Inspect Captured Webhook Events
GET /api/v1/inboxes/:id/events returns a paginated list of captured webhook events with full headers, body, query string, and metadata.
Every HTTP request that reaches an inbox is stored as an event. Events contain the complete, unmodified request — method, path, all headers, the raw body, and query string — along with a timestamp. Use the Events API to retrieve those records programmatically and feed them into your tests, logging pipelines, or debugging tools.
Authentication is required for saved inboxes. Pass your Bearer token in the Authorization header. Anonymous inboxes can be read without a token while they are still active.
All HTTP headers from the original request, as a key-value object with lowercase header names. This includes any signature headers added by your webhook provider.
The total number of events stored for this inbox, regardless of the current limit and offset. Use this value to calculate how many pages of results are available.