/v1/status
Chain status (latest block)
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/elys-api/v1/status" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/elys-api/v1/status", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/elys-api/v1/status");
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/elys-api/v1/status",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"height": 12929744,
"symbol": "ELYS",
"num_txs": 1,
"chain_id": "elys-1",
"decimals": 6,
"block_time": "2026-06-15T11:15:03.725686690Z",
"native_denom": "uelys",
"proposer_address": "VABl/HJY2OXcBpkJs3T5LBvkI8U="
},
"meta": {
"timestamp": "2026-06-15T11:15:15.725Z",
"request_id": "617af8f1-02df-4f21-963b-e5b2b2d17df8"
},
"status": "ok",
"message": "Status retrieved successfully",
"success": true
}