The Raw Event Export API does not paginate; each call returns a single JSONL stream of events up to the limits you specify.
Key points from the docs:
You can optionally cap the number of events returned with the limit query parameter; its maximum allowed value is 100,000 events per call.[Export API]
If you donβt set limit, the API will return all matching events for the given from_date/to_date (subject to overall system constraints), in a single response body, not in pages.[Export methods; Export API]
There is no documented pagination mechanism (no page or session_id parameters) for the Raw Event Export API; those exist only for the Engage (profiles) API.[Engage API]
Because thereβs no pagination, if you have very large volumes you typically:
Use limit (β€ 100,000) and/or
Split your export into multiple calls over smaller date ranges, keeping each response to a manageable size.[Varied ranges script]