List events
GET /events — log durable de eventos emitidos para tu organización.
Authorizations
Paste your Connect API key (sk_live_… for production, sk_test_… for sandbox) without the Bearer prefix. Mint and rotate keys from the admin panel.
Headers
Query Parameters
Comma-separated list of event types to include. v1 vocabulary: payment_intent.completed, address.deposit.received. Unknown values return 400 invalid_type.
UUID of the principal object the event is about. Useful for show me every event for this intent; pass the intent id (or future address id, etc.) here. Single-value -- to query across N principals make N requests.
true / false / omit. Filters by the event's livemode column verbatim. Omit to include both modes.
Inclusive lower bound on created_at (ISO 8601 date or datetime; naive input is treated as UTC).
Inclusive upper bound on created_at (ISO 8601 date or datetime; naive input is treated as UTC).
Opaque continuation token from a previous response's cursor field. Omit to fetch the first page.
Max rows to return (server clamps at 200).
1 <= x <= 200Response
Successful Response
Paginated list response, same envelope as the other Connect " list endpoints.
True iff at least one more row exists past this page. Computed by fetching limit + 1 rows server-side; if the SQL returns limit + 1, we slice to limit and set has_more=True.
Opaque continuation token. Pass back as ?cursor=... to fetch the next page; None on the last page.