Net peerCount

Returns the number of peers currently connected to the client.

POSTnet_peerCount
Response

OK

Body
idinteger
jsonrpcstring
resultstring
Request
const response = await fetch('net_peerCount', {
    method: 'POST',
    headers: {},
});
const data = await response.json();
Response
{
  "id": 0,
  "jsonrpc": "text",
  "result": "text"
}