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
| Field | Type | Description |
|---|---|---|
| s | string | Trading pair |
| u | int64 | Update ID |
| b | string | Best bid price |
| B | string | Best bid quantity |
| a | string | Best ask price |
| A | string | Best ask quantity |
| t | int64 | Timestamp |
Push Example
{
"action": "book_ticker",
"result": {
"s": "MSX",
"u": 12345,
"b": "9.9",
"B": "1000",
"a": "10.1",
"A": "800",
"t": 1736163000000
}
}