curl --request POST \
--url 'https://rpc-mainnet.solanatracker.io/?api_key=' \
--header 'Content-Type: application/json' \
--data '
{
"jsonrpc": "2.0",
"id": "db16f277-1a22-41ff-9f85-f37e2cd77900",
"method": "getClusterNodes"
}
'{
"jsonrpc": "2.0",
"id": "db16f277-1a22-41ff-9f85-f37e2cd77900",
"result": [
{
"pubkey": "9QzsJf7LPLj8GkXbYT3LFDKqsj2hHG7TA3xinJHu8epQ",
"gossip": "10.239.6.48:8001",
"tpu": "10.239.6.48:8856",
"rpc": "10.239.6.48:8899",
"version": "1.0.0 c375ce1f",
"featureSet": 123,
"shredVersion": 123
}
]
}curl --request POST \
--url 'https://rpc-mainnet.solanatracker.io/?api_key=' \
--header 'Content-Type: application/json' \
--data '
{
"jsonrpc": "2.0",
"id": "db16f277-1a22-41ff-9f85-f37e2cd77900",
"method": "getClusterNodes"
}
'{
"jsonrpc": "2.0",
"id": "db16f277-1a22-41ff-9f85-f37e2cd77900",
"result": [
{
"pubkey": "9QzsJf7LPLj8GkXbYT3LFDKqsj2hHG7TA3xinJHu8epQ",
"gossip": "10.239.6.48:8001",
"tpu": "10.239.6.48:8856",
"rpc": "10.239.6.48:8899",
"version": "1.0.0 c375ce1f",
"featureSet": 123,
"shredVersion": 123
}
]
}The JSON-RPC protocol version.
2.0 "2.0"
A unique identifier for the request.
"1"
The name of the RPC method to invoke.
getClusterNodes "getClusterNodes"
Successfully retrieved cluster node information.
The JSON-RPC protocol version.
2.0 "2.0"
Identifier matching the request.
"1"
Comprehensive list of all discoverable Solana validator nodes currently participating in the network.
Show child attributes
Unique validator identity public key (base-58 encoded) that identifies this node on the Solana network.
"9QzsJf7LPLj8GkXbYT3LFDKqsj2hHG7TA3xinJHu8epQ"
IP address and port for connecting to this validator's gossip protocol endpoint for peer discovery.
"10.239.6.48:8001"
Transaction Processing Unit address where clients can directly submit transactions to this validator.
"10.239.6.48:8856"
JSON-RPC API endpoint address if this validator offers public RPC services, or null if not publicly available.
"10.239.6.48:8899"
Solana software version and build identifier running on this validator node.
"1.0.0 c375ce1f"
Numeric identifier of the feature set enabled on this validator, used to track protocol compatibility.
Network compatibility version number used for shred processing and routing between validator nodes.
Was this page helpful?