Skip to main content
Version: Next

Best Bid/Ask (BBO)

Subscribe to real-time best bid and ask prices.

Subscription Format

{symbol}@book_ticker

Subscribe Request

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

Push Data Fields

FieldTypeDescription
sstringTrading pair
uint64Update ID
bstringBest bid price
BstringBest bid quantity
astringBest ask price
AstringBest ask quantity
tint64Timestamp

Push Example

{
"action": "book_ticker",
"result": {
"s": "MSX",
"u": 12345,
"b": "9.9",
"B": "1000",
"a": "10.1",
"A": "800",
"t": 1736163000000
}
}