Naar de inhoud
GET /v1/address

Address detail with BTC balance

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/goat-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "address": {
            "ens": null,
            "hash": "0x3022b87ac063DE95b1570F46f5e470F8B53112D8",
            "name": "FiatTokenProxy",
            "token": {
                "name": "Bridged USDC (Stargate)",
                "type": "ERC-20",
                "symbol": "USDC.e"
            },
            "creator": "0x565786AbE5BA0f9D307AdfA681379F0788bEdEf7",
            "balance_btc": 0,
            "balance_wei": "0",
            "is_contract": true,
            "is_verified": true
        }
    },
    "meta": {
        "timestamp": "2026-06-08T09:50:15.205Z",
        "request_id": "bcab46fa-7dfc-45ff-8436-661d2fa4f01a"
    },
    "status": "ok",
    "message": "Address retrieved successfully",
    "success": true
}