Exports

Download order book history and reference trades as Parquet files. Generated on first request, cached for subsequent downloads.

GET/markets/{market_id}/export
sdkclient.exports.download(market_id)

Order book history (snapshots, deltas, and trades) as a Parquet file. The SDK also downloads reference trades for the underlying asset.

Parameters
market_idstrrequired
Market UUID.
data_dir = client.exports.download("8150b888...") result = client.backtest( strategy, "8150b888...", data_dir=data_dir, )
GET/series/{series_id}/export
sdkclient.exports.download_series(series_id, **params)

Order book history for every market in a series as a zip of Parquet files. Includes tick-level reference trades for the underlying.

Parameters
series_idstrrequired
Series slug or UUID.
afterint
Start time filter (ms epoch).
beforeint
End time filter (ms epoch).
data_dir = client.exports.download_series( "btc-up-or-down-5m", after="2026-03-01", before="2026-03-08", ) result = client.backtest( strategy, "btc-up-or-down-5m", data_dir=data_dir, )
Warning
Exports require Pro or Enterprise tier. Counts against the hourly export quota (60/hr Pro, 120/hr Enterprise).