/v1/network
Live Stellar network state
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/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_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten 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
}