/v1/address
Account balance & holdings
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/zora-api/v1/address" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/zora-api/v1/address", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/zora-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/zora-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": "0x13fDac9F9b4777705db45291bbFF3c972c6d1d97",
"name": "ERC1967Proxy",
"token": null,
"creator": "0x9A8f92a830A5cB89a3816e3D267CB7791c16b04D",
"balance_eth": 0,
"balance_wei": "0",
"is_contract": true,
"is_verified": true
}
},
"meta": {
"timestamp": "2026-06-08T09:49:41.516Z",
"request_id": "7d79124d-cd32-4d41-82f5-29270ea847dd"
},
"status": "ok",
"message": "Address retrieved successfully",
"success": true
}