Order Book
{{WSS_SERVER}}/ws
Last modified:2024-10-12 09:17:07
Information
Initial Limit: 1000 data points for both bid and ask sides
Message Structure
Send Message
1.
2.
3.
4.
Subscribe Example
{
"type": "subscribe",
"channel": "orderbook",
"id": "random string",
"symbol": "WBTCUSDT"
}
Unsubscribe Example
{
"type": "unsubscribe",
"channel": "orderbook",
"id": "random string",
"symbol": "WBTCUSDT"
}
Initial Message
1.
2.
3.
4.
5.
Response Message Example
Update Message
1.
2.
3.
4.
Update Message Example
{
"type": "update",
"channel": "orderbook",
"symbol": "WBTCUSDT",
"data": {
"bids": [
{
"price": "32680.18",
"volume": "0.09",
"orderCount": "1"
},
{
"price": "32571.69",
"volume": "0.1",
"orderCount": "1"
},
{
"price": "32142.54",
"volume": "0.1",
"orderCount": "1"
}
],
"asks": [
{
"price": "34915.97",
"volume": "0.1",
"orderCount": "1"
}
],
"lastTimestamp": "1700809758368",
"timestamp": "1700809759368"
}
}
Maintain a Local Orderbook
1.
2.
"init"
. Buffer and store this data to create your local order book.3.
"uptade"
.lastTimestamp
matches the timestamp
in previous message from your local order book to ensure updates are in sequence.4.
5.
Request
Header Params
VESSEL-API-KEY
stringÂ
required
Default:
{{API_KEY}}
VESSEL-PASSPHRASE
stringÂ
required
Default:
{{API_PASSPHRASE}}
VESSEL-SIGNATURE
stringÂ
required
VESSEL-TIMESTAMP
stringÂ
required
Modified at 2024-10-12 09:17:07