/v1/balance
Address balance & tx count
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/songbird-api/v1/balance" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/songbird-api/v1/balance", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/songbird-api/v1/balance");
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/songbird-api/v1/balance",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"chain": "Songbird",
"symbol": "SGB",
"address": "0x000000000000000000000000000000000000dEaD",
"balance": 548912794.582518,
"tx_count": 0,
"balance_wei": "548912794582518041870220550"
},
"meta": {
"timestamp": "2026-06-15T20:40:22.437Z",
"request_id": "de498ec0-fde9-48d4-be82-1938ccf87cc3"
},
"status": "ok",
"message": "Songbird balance retrieved",
"success": true
}