Zum Inhalt springen
GET /v1/account

An account balance, staked CPU/NET, RAM and resource limits

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/eos-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "voter": {
            "proxy": null,
            "is_proxy": false,
            "staked_eos": 0.8,
            "producers_voted": 0
        },
        "source": "EOS",
        "account": "binancecleos",
        "created": "2018-06-29T08:01:48.000",
        "permissions": [
            "active",
            "owner"
        ],
        "cpu_limit_us": {
            "max": 36176,
            "unit": "microseconds",
            "used": 147,
            "available": 36029
        },
        "ram_used_pct": 33.32,
        "cpu_staked_eos": 40058.1,
        "net_staked_eos": 4010.6,
        "net_limit_bytes": {
            "max": 75970154,
            "unit": "bytes",
            "used": 129,
            "available": 75970025
        },
        "ram_quota_bytes": 182938,
        "ram_usage_bytes": 60955,
        "liquid_balance_eos": 0.2628
    },
    "meta": {
        "timestamp": "2026-06-10T14:00:01.656Z",
        "request_id": "b3d4ff78-317e-4dfb-84b2-9a5ec9a62417"
    },
    "status": "ok",
    "message": "Account retrieved successfully",
    "success": true
}