POST
/
95e61622bf6a8af293978377718e3b77
/
wallet
/
listnodes
wallet/listnodes
curl --request POST \
  --url https://tron-mainnet.core.chainstack.com/95e61622bf6a8af293978377718e3b77/wallet/listnodes \
  --header 'Content-Type: application/json' \
  --data '{}'
{
  "nodes": [
    {
      "address": {
        "host": "<string>",
        "port": 123
      }
    }
  ]
}
TRON API method that retrieves a list of all nodes in the TRON network, including Super Representative nodes and full nodes.
Get you own node endpoint todayStart for free and get your app to production levels immediately. No credit card required.You can sign up with your GitHub, X, Google, or Microsoft account.

Parameters

This method does not require any parameters.

Response

  • nodes — array of node information objects containing:
    • address — node address information
      • host — node IP address
      • port — node port number

Use case

The wallet/listnodes method is used for:
  • Discovering available nodes in the TRON network
  • Building network topology maps and node distribution analysis
  • Finding nodes for direct P2P connections
  • Monitoring network health and node availability
  • Creating decentralized applications that interact with multiple nodes

Body

application/json · object

Response

200 - application/json

List of network nodes

The response is of type object.