Get All Nodes

Get All Nodes

GET
/node
/node

The Authorization access token

Authorization

Authorization
Required
Bearer <token>

In: header

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

Ok

{
  "data": {
    "nodes": [
      {
        "id": 1,
        "endPoint": "http://localhost:8080",
        "connectionToken": "token",
        "createdAt": "2021-01-01T00:00:00.000Z"
      }
    ]
  },
  "statusCode": 200
}