Nodes Status

Get All Nodes (shard) status

GET
/shard/status
/shard/status

The Authorization access token

Authorization

Authorization
Required
Bearer <token>

In: header

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

Ok

{
  "data": {
    "nodes": [
      {
        "name": "Node 1",
        "ip": "0.0.0.0",
        "latency": 100,
        "requests": 100,
        "ruiningRequests": 10,
        "pending": 10,
        "success": 80,
        "error": 10,
        "blocked": false
      }
    ]
  },
  "statusCode": 200
}