Vai al contenuto
GET /v1/balance

Address balance & tx count

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/monad-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

curl "https://api.oanor.com/monad-api/v1/balance" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/monad-api/v1/balance", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/monad-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/monad-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": "Monad",
        "symbol": "MON",
        "address": "0x000000000000000000000000000000000000dEaD",
        "balance": 4980.484656,
        "tx_count": 0,
        "balance_wei": "4980484656011323274358"
    },
    "meta": {
        "timestamp": "2026-06-15T20:40:07.318Z",
        "request_id": "e7eba5d9-4716-4841-9376-196408d4eb9e"
    },
    "status": "ok",
    "message": "Monad balance retrieved",
    "success": true
}