/v1/status
Chain 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/mantle-api/v1/status" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/mantle-api/v1/status", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/mantle-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/mantle-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": {
"network": "Mantle Mainnet",
"syncing": false,
"chain_id": 5000,
"block_number": 96695888,
"native_token": "MNT",
"gas_price_wei": "50000100000",
"client_version": "Geth/v1.16.5-stable-c739e50e/linux-amd64/go1.24.13",
"gas_price_gwei": 50.0001
},
"meta": {
"timestamp": "2026-06-15T11:14:50.654Z",
"request_id": "7b2439dc-444e-49d3-b24b-6829e1981a67"
},
"status": "ok",
"message": "Status retrieved successfully",
"success": true
}