🔍 Get account information
Code samples
GET /api/v1/trx/account/{address}
Returns information about a Tron account
🛠️ Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
| address | path | string | true | Tron address in base58 format |
Example responses
200 Response
{
"address": "TLWKepDBC8RZjAhtWyNqASyzgyVyHUuS7o",
"balance": 838847434,
"create_time": 1734187023000,
"latest_opration_time": 1758025827000,
"free_net_usage": 413,
"latest_consume_free_time": 1758007050000,
"net_window_size": 28800000,
"net_window_optimized": true,
"account_resource": {
"energy_usage": 284973,
"latest_consume_time_for_energy": 1758025827000,
"energy_window_size": 25568690,
"acquired_delegated_frozenV2_balance_for_energy": 64073000000,
"energy_window_optimized": true
},
"owner_permission": {
"permission_name": "owner",
"threshold": 1,
"keys": [
{
"address": "TLWKepDBC8RZjAhtWyNqASyzgyVyHUuS7o",
"weight": 1
}
]
},
"active_permission": [
{
"type": "Active",
"id": 2,
"permission_name": "active",
"threshold": 1,
"operations": "7fff1fc0033ec30f000000000000000000000000000000000000000000000000",
"keys": [
{
"address": "TLWKepDBC8RZjAhtWyNqASyzgyVyHUuS7o",
"weight": 1
}
]
}
],
"frozenV2": [
[],
{
"type": "ENERGY"
},
{
"type": "TRON_POWER"
}
],
"assetV2": [
{
"key": "1004978",
"value": 800
},
{
"key": "1004989",
"value": 2222222
}
],
"free_asset_net_usageV2": [
{
"key": "1004978",
"value": 0
}
],
"asset_optimized": true
}
🔁 Responses
| Status | Meaning | Description | Schema |
|---|---|---|---|
| 200 | OK | Successful response | Account |
| 400 | Bad Request | Bad request (invalid address format) | None |
| 500 | Internal Server Error | Internal server error | None |