Skip to content
GET /v1/account

An account XNO balance, receivable and representative

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

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

Get an API key

Code snippets

curl "https://api.oanor.com/nano-api/v1/account" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/nano-api/v1/account", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/nano-api/v1/account");
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/nano-api/v1/account",
    headers={"x-oanor-key": "oanor_test_..."}
)

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "source": "Nano",
        "account": "nano_1nanode8ngaakzbck8smq6ru9bethqwyehomf79sae1k7xd47dkidjqzffeg",
        "frontier": "44DF0057D33D38C317A35CF9F034B9189BAE031DE032B385E3F453E5FD5ED279",
        "modified": "2021-02-22T22:55:19.000Z",
        "balance_raw": "437022401290003970326450322946",
        "block_count": 52,
        "balance_nano": 0.4370224,
        "representative": "nano_1anrzcuwe64rwxzcco8dkhpyxpi8kd7zsjc1oeimpc3ppca4mrjtwnqposrs",
        "receivable_nano": 1.0e-5
    },
    "meta": {
        "timestamp": "2026-06-10T13:59:45.360Z",
        "request_id": "38929330-8656-45ac-9a11-3cf29b59ed5f"
    },
    "status": "ok",
    "message": "Account retrieved successfully",
    "success": true
}