v1
latestOpenAPI 3.1.02026-07-2657157254.1 KBbinance
Get Binance Ticks
Fetch raw book ticker data at microsecond granularity.
Returns bid/ask/mid/spread for each tick. Use cursor-based pagination to iterate through large time ranges (e.g. a 15m window is ~63K ticks).
get/v2/binance/ticks/{symbol}
Path parameters
symbol'BTCUSDT' | 'ETHUSDT' | 'SOLUSDT' | 'XRPUSDT' required
Supported Binance trading pairs for crypto up/down market backtesting.
Trading pair
Query parameters
start_timeinteger required
Unix timestamp (seconds) for range start
Unix timestamp (seconds) for range start
end_timeinteger required
Unix timestamp (seconds) for range end
Unix timestamp (seconds) for range end
limitinteger
Max ticks per page
Max ticks per page
pagination_keystring nullable
Cursor for next page
Cursor for next page
Response
Successful Response
Example response
{
"ticks": [
{
"ask_price": 103250.22,
"ask_qty": 0.412,
"bid_price": 103250.12,
"bid_qty": 0.523,
"mid_price": 103250.17,
"spread": 0.1,
"timestamp": "2026-01-31T12:00:00.123456Z"
}
]
}