Skip to content
GET /v1/address

Account balance & holdings

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/zora-api

It works. Grab an API key and use it in your project.

Get an API key

Code 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_..."}
)

Example response

A real response from this endpoint, captured by the latest 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
}