/v1/account
An address's TRX + TRC20 balances
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/tron-api/v1/account" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/tron-api/v1/account", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/tron-api/v1/account");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/tron-api/v1/account",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"exists": true,
"source": "TRON",
"tokens": [
{
"symbol": "WIN",
"balance": 585420653.609151,
"contract": "TLa2f6VPqDgRE67v1736s7bJ8Ray5wYjU7"
},
{
"symbol": "USDT",
"balance": 620.907555,
"contract": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"
}
],
"address": "TNaRAoLUyYEV2uF7GUrzSjRQTU8v5ZJ5VR",
"created_at": "2018-06-28T06:43:57.000Z",
"balance_trx": 14534.104748,
"trc20_token_count": 881
},
"meta": {
"timestamp": "2026-06-09T11:38:10.931Z",
"request_id": "a3612ab4-7f84-4722-8d16-9440ad290c24"
},
"status": "ok",
"message": "Account retrieved successfully",
"success": true
}