/v1/address
Account balance & holdings
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
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_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten 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
}