Zum Inhalt springen
GET /v1/account

An address's core state

Live testen

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

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

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

API-Key holen

Code-Snippets

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

Beispiel-Response

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

{
    "data": {
        "flags": 1703936,
        "domain": null,
        "source": "XRP Ledger",
        "address": "rHb9CJAWyB4rj91VRWn96DkukG4bwdtyTh",
        "sequence": 44196,
        "balance_xrp": 56760.625556,
        "owner_count": 1,
        "ledger_index": 104804932,
        "balance_drops": "56760625556"
    },
    "meta": {
        "timestamp": "2026-06-09T11:38:20.986Z",
        "request_id": "33f5cceb-2890-42df-8bef-00858b0c3609"
    },
    "status": "ok",
    "message": "Account retrieved successfully",
    "success": true
}