Zum Inhalt springen
GET /v1/balance

Address balance & tx count

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/monad-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten 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
}