curl --request POST \
--url https://tron-mainnet.core.chainstack.com/95e61622bf6a8af293978377718e3b77/walletsolidity/getaccount \
--header 'Content-Type: application/json' \
--data '{
"address": "TZ4UXDV5ZhNW7fb2AMSbgfAEZ7hWsnYS2g",
"visible": true
}'
{
"account_name": "<string>",
"address": "<string>",
"balance": 123,
"create_time": 123,
"latest_opration_time": 123,
"asset": {},
"assetV2": [
{}
],
"frozen": [
{}
],
"net_usage": {},
"energy_usage": {},
"owner_permission": {},
"witness_permission": {},
"active_permission": [
{}
]
}
curl --request POST \
--url https://tron-mainnet.core.chainstack.com/95e61622bf6a8af293978377718e3b77/walletsolidity/getaccount \
--header 'Content-Type: application/json' \
--data '{
"address": "TZ4UXDV5ZhNW7fb2AMSbgfAEZ7hWsnYS2g",
"visible": true
}'
{
"account_name": "<string>",
"address": "<string>",
"balance": 123,
"create_time": 123,
"latest_opration_time": 123,
"asset": {},
"assetV2": [
{}
],
"frozen": [
{}
],
"net_usage": {},
"energy_usage": {},
"owner_permission": {},
"witness_permission": {},
"active_permission": [
{}
]
}
address
— the account address in hex format (41 prefix) or base58check formatvisible
— whether the address is in readable format (base58check)account_name
— the account name (if set)address
— the account addressbalance
— TRX balance in sun (1 TRX = 1,000,000 sun)frozen
— frozen balance information for energy and bandwidthasset_v2
— TRC-10 token balancesallowance
— delegated resource allowancesvotes
— voting information for Super Representativescreate_time
— account creation timestampwalletsolidity/getaccount
method is used for:
Account information from solidified database
The response is of type object
.