Skip to content
GET /v1/address

Address detail with RON balance

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/ronin-api

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

Get an API key

Code snippets

curl "https://api.oanor.com/ronin-api/v1/address" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/ronin-api/v1/address", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/ronin-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/ronin-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": "0x0B7007c13325C48911F73A2daD5FA5dCBf808aDc",
            "name": "Proxy",
            "token": {
                "name": "USD Coin",
                "type": "ERC-20",
                "symbol": "USDC"
            },
            "creator": null,
            "balance_ron": 0,
            "balance_wei": "0",
            "is_contract": true,
            "is_verified": true
        }
    },
    "meta": {
        "timestamp": "2026-06-08T09:50:25.028Z",
        "request_id": "c11f41a2-a7d9-4edd-99f3-b795ecf68c1e"
    },
    "status": "ok",
    "message": "Address retrieved successfully",
    "success": true
}