Export customer events as NDJSON
Stream the tenant’s customer events as newline-delimited JSON (NDJSON) for data-warehouse sync. Pass the timestamp of the last event you ingested as the since cursor and only the delta is returned, so an Airbyte / Fivetran / custom pipe can poll on a cadence. Optionally bound the window with until and cap the batch with limit.
Authorizations
Dashboard JWT token from Clerk
Query Parameters
ISO 8601 timestamp. Events with a timestamp greater than or equal to this are returned.
Optional ISO 8601 upper bound. Defaults to the current time.
Maximum rows to return. Defaults to 5000, capped at 20000.
1 <= x <= 20000Response
One JSON event object per line (application/x-ndjson).
Newline-delimited JSON — each line is one event object.