Skip to main content
Version: Next

Best Bid/Ask Price (BBO)

Subscribe to real-time best bid and ask prices for futures.

Subscription Format

{symbol}@book_ticker

Subscribe Request

{
"action": "subscribe",
"streams": ["BTCUSD@book_ticker"]
}

Push Data Fields

FieldTypeDescription
sstringContract symbol
uint64Update ID
bstringBest bid price
BstringBest bid quantity
astringBest ask price
AstringBest ask quantity
tint64Timestamp

Push Example

{
"action": "book_ticker",
"result": {
"s": "BTCUSD",
"u": 123456,
"b": "50100.00",
"B": "10",
"a": "50120.00",
"A": "8",
"t": 1736163000000
}
}