Zum Inhalt springen
GET /v1/address

Address detail with VANA balance

Live testen

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

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

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

API-Key holen

Code-Snippets

curl "https://api.oanor.com/vana-api/v1/address" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/vana-api/v1/address", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/vana-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/vana-api/v1/address",
    headers={"x-oanor-key": "oanor_test_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "address": {
            "ens": null,
            "hash": "0xF1815bd50389c46847f0Bda824eC8da914045D14",
            "name": "Bridged USDC (Stargate)",
            "token": {
                "name": "Bridged USDC (Stargate)",
                "type": "ERC-20",
                "symbol": "USDC.e"
            },
            "creator": "0x565786AbE5BA0f9D307AdfA681379F0788bEdEf7",
            "balance_wei": "0",
            "is_contract": true,
            "is_verified": true,
            "balance_vana": 0
        }
    },
    "meta": {
        "timestamp": "2026-06-08T09:50:50.575Z",
        "request_id": "bc130027-21d2-4ac2-afc8-5aaa61f472e6"
    },
    "status": "ok",
    "message": "Address retrieved successfully",
    "success": true
}