Zum Inhalt springen
GET /v1/meta

Spec

Live testen

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

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

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

API-Key holen

Code-Snippets

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

Beispiel-Response

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

{
    "data": {
        "source": "Stellar Horizon API (live)",
        "service": "stellar-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/account": "An address's full wallet (address=GA5XIGA5C7QTPTWXQHY6MCJRMTRZDOSHR6EFIBNDQTCQHG262N4GGKTM).",
            "GET /v1/network": "Live Stellar network state: latest ledger, base fee, fee percentiles, capacity.",
            "GET /v1/payments": "An address's recent payments in/out (address=, limit).",
            "GET /v1/transactions": "An address's recent transactions (address=, limit)."
        },
        "description": "Live on-chain data from the Stellar network via the public Horizon API: any address's full wallet (XLM plus every issued asset it holds — codes, issuers, balances — sequence, sub-entries, home domain); the account's recent payments in and out (counterparty, asset, amount, time); the account's recent transactions (ledger, fee, operation count, success, memo); and the live network state (latest ledger, base fee, fee percentiles and ledger capacity). Live, no key, nothing stored. Distinct from the XRP Ledger, EVM and Solana on-chain APIs and from price feeds — this is Stellar account state, multi-asset balances, payments and network health.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-09T11:38:17.657Z",
        "request_id": "451a748f-baec-4e0a-9709-7d96fcd0bba9"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}