curl --request POST \
--url https://tron-mainnet.core.chainstack.com/95e61622bf6a8af293978377718e3b77/wallet/getaccountnet \
--header 'Content-Type: application/json' \
--data '{
"address": "41608f8da72479edc7dd921e4c30bb7e7cddbe722e",
"visible": false
}'
{
"freeNetUsed": 123,
"freeNetLimit": 123,
"NetUsed": 123,
"NetLimit": 123,
"TotalNetLimit": 123,
"TotalNetWeight": 123,
"netUsed": 123,
"netLimit": 123,
"TotalEnergyLimit": 123,
"TotalEnergyWeight": 123
}
curl --request POST \
--url https://tron-mainnet.core.chainstack.com/95e61622bf6a8af293978377718e3b77/wallet/getaccountnet \
--header 'Content-Type: application/json' \
--data '{
"address": "41608f8da72479edc7dd921e4c30bb7e7cddbe722e",
"visible": false
}'
{
"freeNetUsed": 123,
"freeNetLimit": 123,
"NetUsed": 123,
"NetLimit": 123,
"TotalNetLimit": 123,
"TotalNetWeight": 123,
"netUsed": 123,
"netLimit": 123,
"TotalEnergyLimit": 123,
"TotalEnergyWeight": 123
}
address
— the account address to query network resources for (hex format)visible
— optional boolean to specify address format (default: false for hex format)freeNetUsed
— amount of free bandwidth usedfreeNetLimit
— total free bandwidth limit availableNetUsed
— amount of staked bandwidth usedNetLimit
— total staked bandwidth limit availableTotalNetLimit
— total network bandwidth limitTotalNetWeight
— total network weight for bandwidth calculationnetUsed
— current bandwidth usagenetLimit
— current bandwidth limitTotalEnergyLimit
— total energy limit (if applicable)TotalEnergyWeight
— total energy weight (if applicable)wallet/getaccountnet
method is used for:
Account network resource information
The response is of type object
.
Was this page helpful?