Dataset catalog

Crypto Market Data Datasets

L2 order books, tick trades, ticker statistics, liquidations, open interest, funding rates. Hourly Parquet files from 9 exchanges.

9

Exchanges

15

Venue IDs

6

Data types

2025-06-28

History since

Browse the data

Exchange

Data type

Binance · Order Book

Binance Historical Order Book Data (Spot & Futures)

History start
2025-06-28
Symbols
2,887
Venue IDs
binance_futuresUSDⓈ-M futuresbinance_spotSpot
binance_futures/2026-09-02/12/BTCUSDT_orderbook.parquet5,451,975 rows
received_timeevent_timetransaction_timesymbolevent_typefirst_update_idfinal_update_idprev_final_update_idlast_update_idsidepricequantityorder_count
178835040000736135917883503998861788350399885BTCUSDTupdate114547525300381145475253264711454752529739nullbid26288.500.119null
178835040000736135917883503998861788350399885BTCUSDTupdate114547525300381145475253264711454752529739nullask76788.602.682null
178835040000736135917883503998861788350399885BTCUSDTupdate114547525300381145475253264711454752529739nullbid26488.500.028null

Columns · 13

received_time
INT64
event_time
INT64
transaction_time
INT64?
symbol
STRING
event_type
STRING
first_update_id
INT64?
final_update_id
INT64?
prev_final_update_id
INT64?
last_update_id
INT64?
side
STRING
price
STRING
quantity
STRING
order_count
INT64?
binance_orderbook.py
import cryptohftdata as chd

client = chd.CryptoHFTDataClient(api_key="YOUR_API_KEY")

df = client.get_orderbook(
    symbol="BTCUSDT",
    exchange=chd.exchanges.BINANCE_FUTURES,
    start_date="2026-09-02",
    end_date="2026-09-02",
)

print(df.head())

All dataset pages

48 pages

Binance logo

Binance historical data

Spot · USDⓈ-M futures

Venue notes
Bybit logo

Bybit historical data

Spot · Linear derivatives

Venue notes
Hyperliquid logo

Hyperliquid historical data

Spot · Perpetuals

Venue notes
Aster logo

Aster historical data

Perpetuals

Venue notes
Bitget logo

Bitget historical data

Spot · Futures

Venue notes
OKX logo

OKX historical data

Spot · Perpetual swaps

Venue notes
Kraken logo

Kraken historical data

Spot · Futures

Venue notes
BitMEX logo

BitMEX historical data

Perpetuals & futures

Venue notes
Lighter logo

Lighter historical data

Perpetuals

Venue notes

Files

Object path
{exchange_id}/{YYYY-MM-DD}/{HH}/{SYMBOL}_{data_type}.parquet
Format
Parquet, Zstd
Granularity
One file per symbol per hour, UTC
Reads with
pandas, Polars, DuckDB, Arrow
pip install cryptohftdata