WebSocket
Through WebSocket connections real-time updates can be obtained from a variety of sources
Last updated
client.ws.on('message', (data) => {
data = JSON.parse(data);
console.log(data);
});{
"topic": "orderbook",
"action": "partial",
"symbol": "xht-usdt",
"data": {
"bids": [
[0.1, 0.1],
...
],
"asks": [
[1, 1],
...
],
"timestamp": "2020-12-15T06:45:27.766Z"
},
"time": 1608015328
} {
"topic": "trade",
"action": "partial",
"symbol": "xht-usdt",
"data": [
{
"size": 0.012,
"price": 300,
"side": "buy",
"timestamp": "2020-12-15T07:25:28.887Z"
},
...
],
"time": 1608015328
} {
"topic": "wallet",
"action": "partial",
"user_id": 1,
"data": {
"usdt_balance": 1,
"usdt_available": 1,
"xht_balance": 1,
"xht_available": 1,
"xmr_balance": 1,
"xmr_available": 1,
"btc_balance": 1,
"btc_available": 1,
"eth_balance": 1,
"eth_available": 1,
...,
"updated_at": "2020-12-15T08:41:24.048Z"
},
"time": 1608021684
}{
"topic": "order",
"action": "partial",
"user_id": 1,
"data": [
{
"id": "7d3d9545-b7e6-4e7f-84a0-a39efa4cb173",
"side": "buy",
"symbol": "xht-usdt",
"type": "limit",
"size": 0.1,
"filled": 0,
"price": 1,
"stop": null,
"status": "new",
"fee": 0,
"fee_coin": "xht",
"meta": {},
"fee_structure": {
"maker": 0.1,
"taker": 0.1
},
"created_at": "2020-11-30T07:45:43.819Z",
"created_by": 1
},
...
],
"time": 1608022610
}{
"topic": "order",
"action": "insert",
"user_id": 1,
"symbol": "xht-usdt",
"data": [
{
"id": "7d3d9545-b7e6-4e7f-84a0-a39efa4cb173",
"side": "buy",
"symbol": "xht-usdt",
"type": "limit",
"size": 0.1,
"filled": 0,
"price": 1,
"stop": null,
"status": "new",
"fee": 0,
"fee_coin": "xht",
"meta": {},
"fee_structure": {
"maker": 0.1,
"taker": 0.1
},
"created_at": "2020-11-30T07:45:43.819Z",
"updated_at": "2020-12-15T08:56:45.066Z",
"created_by": 1
},
...
],
"time": 1608022610
}{
"topic": "order",
"action": "insert",
"user_id": 1,
"symbol": "xht-usdt",
"data": [
{
"id": "7d3d9545-b7e6-4e7f-84a0-a39efa4cb173",
"side": "buy",
"symbol": "xht-usdt",
"type": "limit",
"size": 0.1,
"filled": 0,
"price": 1,
"stop": null,
"status": "new",
"fee": 0,
"fee_coin": "xht",
"meta": {},
"fee_structure": {
"maker": 0.1,
"taker": 0.1
},
"created_at": "2020-11-30T07:45:43.819Z",
"updated_at": "2020-12-15T08:56:45.066Z",
"created_by": 1
},
...
],
"time": 1608022610
}