/v1/status
Ledger status
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
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_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"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
}