/v1/address
An address's confirmed ERG balance and native tokens held
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/ergo-api/v1/address" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/ergo-api/v1/address", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/ergo-api/v1/address");
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/ergo-api/v1/address",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"source": "Ergo Platform",
"tokens": [
{
"name": "ClaimRSN.tech",
"amount": 7105,
"decimals": 1,
"token_id": "31ac0f72b036502a17e27ff3bc9eb1b3ae4eef9aa4a3c3bd818475d6326cbd9f"
},
{
"name": "🚬",
"amount": 21069420,
"decimals": 0,
"token_id": "ebb40ecab7bb7d2a935024100806db04f44c62c33ae9756cf6fc4cb6b9aa2d12"
},
{
"name": "ClaimRSN.tech",
"amount": 3102,
"decimals": 1,
"token_id": "ed2197ebb2b958670cb568aeed54693617a3f3718d16d1a298b8c8d337193da0"
},
{
"name": "rsHOSKY",
"amount": 69420,
"decimals": 0,
"token_id": "6ad70cdbf928a2bdd397041a36a5c2490a35beb4d20eabb5666f004b103c7189"
},
{
"name": "ClaimRSN.tech",
"amount": 21025,
"decimals": 1,
"token_id": "028ec31acacaa6aab6cd89a16cab5f9046cfea701262f8c9532ace433075353a"
},
{
"name": "$Lambo",
"amount": 69,
"decimals": 0,
"token_id": "0fdb7ff8b37479b6eb7aab38d45af2cfeefabbefdc7eebc0348d25dd65bc2c91"
},
{
"name": "COS",
"amount": 1234321,
"decimals": 0,
"token_id": "f0d5bdf474fcbd4249608e6dc6e9cf34a327b218f66445ea545b4c711b4676e3"
}
],
"address": "9gqhrGQN3eQmTFAW9J6KNX8ffUhe8BmTesE45b9nBmL7VJohhtY",
"balance_erg": 3.458269,
"token_count": 7,
"balance_nanoerg": 3458269000
},
"meta": {
"timestamp": "2026-06-10T22:58:52.793Z",
"request_id": "abb73c49-eb1d-4110-9c56-4b7593618a94"
},
"status": "ok",
"message": "Address retrieved successfully",
"success": true
}