Health Check

Health Check for the node Display the number of orders, nodes, virtual shards, available shards, and on-going shards

GET
/node/health
/node/health

The Authorization access token

Authorization

Authorization
Required
Bearer <token>

In: header

curl -X GET "https://api.t4b.top/node/health" \
  -H "Authorization: Bearer <token>"

Ok

{
  "data": {
    "orderQueue": 0,
    "onGoingOrders": 0,
    "onGoingNodes": 0,
    "nodes": 0,
    "virtualShards": 0,
    "availableShards": 0,
    "onGoingShards": 0
  },
  "statusCode": 200
}