Data Lab

See the data
before you commit.

Production snapshots from our live pipeline. 4 exchanges, 13 perpetuals, five channels including liquidations, every tick. Download, inspect, integrate.

Binance, Bybit, OKX, Bitget
13 perpetuals
Trades, klines, tickers, L2 books, liquidations

Tue, Jul 21, 2026

LATEST
5 datasets70.8K+ rows total17.7 MB

Trades

30.0K+ rows3.2 MB4 exchanges
CSV
timestampexchangesymbolpriceamountside
2026-07-21 10:13:59.099okxDOTUSDT0.86596buy
2026-07-21 10:13:59.072bybitDOTUSDT0.8656102.1buy
2026-07-21 10:13:59.029binanceDOTUSDT0.8657107.7buy
2026-07-21 10:13:59.029binanceDOTUSDT0.8657279.9buy
2026-07-21 10:13:59.029binanceDOTUSDT0.86577.4buy
View full schema (9 fields)
Data Model · ClickHouse Schema
class Trades(BaseModel):
    timestamp: DateTime64(3)
    exchange: String
    symbol: String
    price: Float64
    amount: Float64
    side: String
    trade_id: String
    is_liquidation: UInt8
    consumer_received: DateTime64(3)

Klines (OHLCV)

15.0K+ rows2.1 MB4 exchanges
CSV
timestampexchangesymbolopenhighlowclosevolume
2026-07-21 10:13:00.000binanceSOLUSDT78.3478.3878.3378.384843.94
2026-07-21 10:13:00.000binanceSOLUSDT78.3478.3878.3378.384830.59
2026-07-21 10:13:00.000binanceSOLUSDT78.3478.3878.3378.374774.73
2026-07-21 10:13:00.000binanceSOLUSDT78.3478.3878.3378.384756.25
2026-07-21 10:13:00.000binanceSOLUSDT78.3478.3878.3378.384753.7
View full schema (14 fields)
Data Model · ClickHouse Schema
class KlinesOHLCV(BaseModel):
    timestamp: DateTime64(3)
    exchange: String
    symbol: String
    interval: String
    open: Float64
    high: Float64
    low: Float64
    close: Float64
    volume: Float64
    quote_volume: Float64
    num_trades: Int32
    close_time: DateTime64(3)
    is_final: UInt8
    consumer_received: DateTime64(3)

Tickers

20.0K+ rows4.2 MB4 exchanges
CSV
timestampexchangesymbollast_pricebidaskvolume_24h
2026-07-21 10:13:59.806bybitETHUSDT1944.731944.721944.731388860.08
2026-07-21 10:13:59.714bybitBTCUSDT66352.966352.96635369568.195
2026-07-21 10:13:59.660bybitTRXUSDT0.326650.326650.3266618233616
2026-07-21 10:13:59.658okxLINKUSDT8.718.7098.714999309.5
2026-07-21 10:13:59.641bitgetAVAXUSDT6.6536.6536.654818081
View full schema (20 fields)
Data Model · ClickHouse Schema
class Tickers(BaseModel):
    timestamp: DateTime64(3)
    exchange: String
    symbol: String
    last_price: Float64
    bid_price: Nullable(Float64)
    ask_price: Nullable(Float64)
    bid_size: Nullable(Float64)
    ask_size: Nullable(Float64)
    high_24h: Nullable(Float64)
    low_24h: Nullable(Float64)
    volume_24h: Nullable(Float64)
    quote_volume_24h: Nullable(Float64)
    open_24h: Nullable(Float64)
    funding_rate: Nullable(Float64)
    next_funding_time: Nullable(DateTime64(3))
    mark_price: Nullable(Float64)
    index_price: Nullable(Float64)
    open_interest: Nullable(Float64)
    open_interest_value: Nullable(Float64)
    consumer_received: DateTime64(3)

Orderbook (L2)

800+ rows7.7 MB4 exchanges
CSV
timestampexchangesymbolbest_bidbid_sizebest_askask_size
2026-07-21 10:14:00.635bybitXRPUSDT1.133618421.81.13377346.8
2026-07-21 10:14:00.614binanceXRPUSDT1.133438361.71.133517579.5
2026-07-21 10:14:00.394okxDOGEUSDT0.07358567.190.073591185.44
2026-07-21 10:14:00.327bitgetTRXUSDT0.3266512040.326663969
2026-07-21 10:14:00.235bybitBNBUSDT578.642.08578.719.75
View full schema (14 fields)
Data Model · ClickHouse Schema
class OrderbookL(BaseModel):
    timestamp: DateTime64(3)
    exchange: String
    symbol: String
    bid_prices: Array(Float64)
    bid_sizes: Array(Float64)
    ask_prices: Array(Float64)
    ask_sizes: Array(Float64)
    is_snapshot: UInt8
    sequence_id: String
    bids_price_0: Float64
    bids_size_0: Float64
    asks_price_0: Float64
    asks_size_0: Float64
    consumer_received: DateTime64(3)

Liquidations

5.0K+ rows485.3 KB4 exchanges
CSV
timestampexchangesymbolliquidated_sidepriceamount
2026-07-21 10:13:27.333okxETHUSDTshort1943.624.6
2026-07-21 10:11:43.893binanceBTCUSDTshort66353.90.607
2026-07-21 10:11:43.893binanceBTCUSDTshort66353.90.607
2026-07-21 10:11:43.072okxBTCUSDTshort66629.50.85
2026-07-21 10:11:42.726bybitBTCUSDTshort66702.10.008
View full schema (9 fields)
Data Model · ClickHouse Schema
class Liquidations(BaseModel):
    timestamp: DateTime64(3)
    exchange: String
    symbol: String
    liquidated_side: String
    price: Float64
    amount: Float64
    bankruptcy_price: Nullable(Float64)
    is_snapshot: UInt8
    consumer_received: DateTime64(3)

Need the full data feed?

Real-time WebSocket stream + full ClickHouse historical access.

Request Access