/v1/account
An address's state + ASA holdings
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
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_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste 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
}