/v1/address
Address balance, ENS & contract info
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/ethereum-api/v1/address" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/ethereum-api/v1/address", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/ethereum-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/ethereum-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": "vitalik.eth",
"hash": "0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045",
"name": null,
"token": null,
"creator": null,
"balance_eth": 5.688840446715981,
"balance_wei": "5688840446715981478",
"is_contract": true,
"is_verified": true
}
},
"meta": {
"timestamp": "2026-06-08T01:19:45.995Z",
"request_id": "b8f817ae-ec1c-47a7-add5-e90d8840fe60"
},
"status": "ok",
"message": "Address retrieved successfully",
"success": true
}