/v1/address
Address detail with ETH balance
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/bob-api/v1/address" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/bob-api/v1/address", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/bob-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/bob-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": "0xe75D0fB2C24A55cA1e3F96781a2bCC7bdba058F0",
"name": "Bridged USDC (BOB)",
"token": {
"name": "Bridged USDC (BOB)",
"type": "ERC-20",
"symbol": "USDC.e"
},
"creator": "0xe4E5e395E9efb3C1bB37D9c53Ad2F115c6f91FfB",
"balance_eth": 0,
"balance_wei": "0",
"is_contract": true,
"is_verified": true
}
},
"meta": {
"timestamp": "2026-06-08T09:51:49.514Z",
"request_id": "e41f7f47-16b3-49f0-a907-179bdb3a78e9"
},
"status": "ok",
"message": "Address retrieved successfully",
"success": true
}