Aller au contenu
GET /v1/meta

Spec

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/stellar-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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_..."}
)

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "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
}