net_peerCount - GIWA
Example code for the net_peerCount JSON-RPC method. Complete guide on how to use net_peerCount JSON-RPC in GetBlock Web3 documentation.
This method returns the number of peers currently connected to the client, as a hex-encoded integer. It is used to gauge how well a node is connected to the GIWA network.
Parameters
Request
curl --location --request POST 'https://shared.ap-southeast-1.getblock.io/<ACCESS-TOKEN>/' \
--header 'Content-Type: application/json' \
--data-raw '{
"jsonrpc": "2.0",
"method": "net_peerCount",
"params": [],
"id": "getblock.io"
}'const axios = require('axios');
const response = await axios.post('https://shared.ap-southeast-1.getblock.io/<ACCESS-TOKEN>/', {
jsonrpc: '2.0',
method: 'net_peerCount',
params: [],
id: 'getblock.io'
}, {
headers: { 'Content-Type': 'application/json' }
});
console.log(response.data.result);import requests
response = requests.post(
'https://shared.ap-southeast-1.getblock.io/<ACCESS-TOKEN>/',
headers={'Content-Type': 'application/json'},
json={
'jsonrpc': '2.0',
'method': 'net_peerCount',
'params': [],
'id': 'getblock.io'
}
)
print(response.json())Response
{
"jsonrpc": "2.0",
"id": "getblock.io",
"result": "0x2f"
}Response Parameters
jsonrpc
string
JSON-RPC protocol version ("2.0")
id
string
Request identifier matching the request
result
string
Hex-encoded count of connected peers
Use Cases
Connectivity Health: Detect an isolated node with too few peers
Sync Diagnostics: Correlate a stalled sync with a low peer count
Monitoring: Track peer count trends across an endpoint fleet
Failover Logic: Prefer well-connected nodes when routing requests
Error Handling
-32603
Internal error
The node failed to report its peer count
-32601
Method not found
The net module is disabled on the client build
Web3 Integration
Last updated
Was this helpful?