/v1/status
Ledger status
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/movement-api/v1/status" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/movement-api/v1/status", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/movement-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/movement-api/v1/status",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"epoch": "10778736",
"network": "Movement Mainnet",
"chain_id": 126,
"git_hash": "7a6e1c6",
"node_role": "full_node",
"block_height": "66024896",
"ledger_version": "155441376",
"ledger_timestamp": "1781522108566257",
"oldest_block_height": "0",
"oldest_ledger_version": "0"
},
"meta": {
"timestamp": "2026-06-15T11:15:09.750Z",
"request_id": "ad3c7c7a-7c6b-47f1-b53c-23cd38213738"
},
"status": "ok",
"message": "Status retrieved successfully",
"success": true
}