node

Get basic information about all configured peers

get/node/peers

Response

A list of all peers

isAliveboolean required

Whether or not the peer is activated

isTrustedboolean required
netIdstring string required

The NetID of the peer

numUsersinteger required

The amount of users attached to the peer

publicKeystring string required

The peers public key encoded in Hex

Example response

[
  {
    "isAlive": true,
    "netId": "localhost:4000",
    "publicKey": 0,
    "numUsers": 1,
    "isTrusted": true
  }
]

Changes