/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/towns-api/v1/status" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/towns-api/v1/status", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/towns-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/towns-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": {
"chain": "Towns",
"source": "Towns L2 RPC",
"symbol": "ETH",
"chain_id": 550,
"network_id": 550,
"latest_block": 32708970,
"client_version": "reth/v2.2.0-7680d6d/x86_64-unknown-linux-gnu"
},
"meta": {
"timestamp": "2026-06-15T20:40:13.240Z",
"request_id": "e7e23906-e20e-4fe4-b0fb-cbf87aca8271"
},
"status": "ok",
"message": "Towns status retrieved",
"success": true
}