Vai al contenuto
GET /v1/network

Live Stellar network state

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/stellar-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "data": {
        "note": "1 XLM = 10,000,000 stroops",
        "source": "Stellar Horizon",
        "core_version": "stellar-core 27.0.0 (7696c069d720fb450caeae940769b0a78a157363)",
        "latest_ledger": 62951329,
        "horizon_version": "26.0.0-212fe2e6fde54fec88ba8de30381ff4eaf9b5c19",
        "base_fee_stroops": 100,
        "network_passphrase": "Public Global Stellar Network ; September 2015",
        "fee_charged_stroops": {
            "max": 61689,
            "min": 100,
            "p50": 100,
            "p90": 7150,
            "p99": 22930
        },
        "history_latest_ledger": 62951329,
        "ledger_capacity_usage": 0.69
    },
    "meta": {
        "timestamp": "2026-06-09T11:38:16.993Z",
        "request_id": "5a8b511f-c1d9-4c9d-bdd6-21c9e8ddff3a"
    },
    "status": "ok",
    "message": "Network state retrieved successfully",
    "success": true
}