/v1/meta
Spec
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/xrpl-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/xrpl-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/xrpl-api/v1/meta");
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/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"source": "Public XRP Ledger nodes via JSON-RPC (live)",
"service": "xrpl-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/server": "Live XRPL ledger state: validated ledger, reserves, fee, node version.",
"GET /v1/account": "An address's core state (address=rHb9CJAWyB4rj91VRWn96DkukG4bwdtyTh): XRP balance, sequence, flags.",
"GET /v1/balances": "An address's XRP + issued-token (trustline) balances (address=).",
"GET /v1/transactions": "An address's recent transactions (address=, limit)."
},
"description": "Live on-chain data from the XRP Ledger (XRPL) via public nodes: any address's core state (XRP balance, sequence, owner count, flags, domain); the full wallet of XRP plus every issued-currency trustline with issuer, currency and amount (hex currency codes decoded); the account's most recent transactions (payments, offers, trustline changes) with hash, type, amount, fee, result and time; and the live ledger state (latest validated ledger, close time, XRP reserves, fee, node version). Live, no key, nothing stored. Distinct from EVM and Solana on-chain APIs and from price feeds — this is XRPL account state, token balances, transactions and ledger health.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-09T11:38:22.108Z",
"request_id": "afab7ddd-f527-43eb-a6b0-1b8dcb4e0f7f"
},
"status": "ok",
"message": "Meta",
"success": true
}