Introduction
ORDER_BOOK
WebSocket Channel allows clients to access real-time order book data for specified market(s). This channel provides an initial snapshot of the order book, giving a complete view of active bids and asks at the time of connection. Following the snapshot, clients receive incremental updates as changes occur in the order book, such as new orders, modifications, or cancellations.Subscribe
{
"type": "SUBSCRIBE",
"channels": [
{
"name": "ORDER_BOOK",
"instrument_codes": [
"BTC_EUR",
"ETH_EUR"
]
}
]
}
Subscription Confirmation
{
"type": "SUBSCRIPTIONS",
"channels": [
{
"name": "ORDER_BOOK",
"instrument_codes": [
"BTC_EUR",
"ETH_EUR"
]
}
],
"time": 1732050545807000000
}