curl --request POST \
--url https://tron-mainnet.core.chainstack.com/95e61622bf6a8af293978377718e3b77/wallet/getaccount \
--header 'Content-Type: application/json' \
--data '{
"address": "TZ4UXDV5ZhNW7fb2AMSbgfAEZ7hWsnYS2g",
"visible": true
}'
{
"address": "<string>",
"balance": 123,
"create_time": 123,
"latest_operation_time": 123,
"free_net_usage": 123,
"account_resource": {},
"owner_permission": {},
"active_permission": [
"<any>"
]
}
curl --request POST \
--url https://tron-mainnet.core.chainstack.com/95e61622bf6a8af293978377718e3b77/wallet/getaccount \
--header 'Content-Type: application/json' \
--data '{
"address": "TZ4UXDV5ZhNW7fb2AMSbgfAEZ7hWsnYS2g",
"visible": true
}'
{
"address": "<string>",
"balance": 123,
"create_time": 123,
"latest_operation_time": 123,
"free_net_usage": 123,
"account_resource": {},
"owner_permission": {},
"active_permission": [
"<any>"
]
}
address
— the TRON account address to query. Can be in base58 or hex format.visible
— optional boolean parameter. When set to true
, the address should be in base58 format. Default is false
.address
— the account address in hex formatbalance
— the TRX balance in sun (1 TRX = 1,000,000 sun)create_time
— account creation timestamplatest_operation_time
— timestamp of the last operationfree_net_usage
— free bandwidth usedlatest_consume_free_time
— last free bandwidth consumption timeaccount_resource
— resource information including energy and bandwidthowner_permission
— owner permission settingsactive_permission
— active permission settingsfrozenV2
— frozen balance details for resource delegationasset
— TRC10 token balancesassetV2
— detailed TRC10 token informationwallet/getaccount
method is essential for:
Account information
The response is of type object
.