Solana Tracker
Solana RPC/Methods

getClusterNodes RPC Method

Description

Returns information about all the nodes participating in the cluster.

Parameters

None

Returns

Returns an array of objects containing information about each node in the cluster, with the following fields:

  • featureSet - The unique identifier of the node's feature set
  • gossip - The gossip network address for the node
  • pubkey - The public key of the node encoded as base-58 string
  • rpc - The IP address and port number of the node's JSON-RPC service. Null if the JSON RPC service is not enabled
  • shredVersion - The version of the data structure used by this node to store and transmit blocks
  • tpu - The TPU network address for the node
  • version - The software version of the node. Null if the version information is not available

Code Examples

curl "https://rpc-mainnet.solanatracker.io/?api_key=YOUR_API_KEY_HERE" \
  -X POST \
  -H "Content-Type: application/json" \
  --data '{"jsonrpc":"2.0", "id":1, "method":"getClusterNodes"}'

On this page