/v1/account
An address liquid, staked and reward TIA
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/celestia-api/v1/account" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/celestia-api/v1/account", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/celestia-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/celestia-api/v1/account",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"source": "Celestia",
"address": "celestia19jz67suexyclppfg2wheh97sht69khld242y5e",
"liquid_tia": 0.049692,
"staked_tia": 873.000076,
"delegation_count": 1,
"pending_rewards_tia": 0.014398
},
"meta": {
"timestamp": "2026-06-10T14:01:35.510Z",
"request_id": "65bd3ac3-ae99-4b0a-9132-12ab3d4b7988"
},
"status": "ok",
"message": "Account retrieved successfully",
"success": true
}