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
}
}
]
}
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
}
}
]
}
nodes
— array of node information objects containing:
address
— node address information
host
— node IP addressport
— node port numberwallet/listnodes
method is used for:
List of network nodes
The response is of type object
.
Was this page helpful?