/v1/account
An address's state + ASA holdings
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/algorand-api/v1/account" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/algorand-api/v1/account", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/algorand-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/algorand-api/v1/account",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"round": 61998372,
"assets": [],
"source": "Algorand (AlgoNode)",
"status": "Offline",
"address": "I3345FUQQ2GRBHFZQPLYQQX5HJMMRZMABCHRLWV6RCJYC6OO4MOLEUBEGU",
"asset_count": 0,
"algo_balance": 1.124243,
"created_apps": 0,
"created_assets": 0,
"total_rewards_algo": 9958544.285694,
"pending_rewards_algo": 0
},
"meta": {
"timestamp": "2026-06-09T20:24:49.784Z",
"request_id": "00c70c16-75bf-48d7-936c-d5450e10b110"
},
"status": "ok",
"message": "Account retrieved successfully",
"success": true
}