/v1/queue
Headline: entry vs exit queue ETH, counts, net flow, clear-time estimates
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/ethstakingqueue-api/v1/queue" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/ethstakingqueue-api/v1/queue", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/ethstakingqueue-api/v1/queue");
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/ethstakingqueue-api/v1/queue",
headers={"x-oanor-key": "oanor_test_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"data": {
"note": "Ethereum's live staking queues. entry_queue.eth_waiting is ETH lining up to activate (eligible_waiting are validators already eligible and churning in; not_yet_eligible were just deposited and are not counted toward the active churn yet). exit_queue.eth_waiting is ETH waiting to exit. net_flow_eth = entry minus exit (positive = net staking inflow). est_clear_hours is an ESTIMATE = queued ETH / the current activation-exit churn limit of 256 ETH per epoch (~6.4 min/epoch); the cap binds at Ethereum's current stake level. ETH amounts are the meaningful metric — a single post-Pectra validator can hold up to 2048 ETH. Live, cached ~90s.",
"epoch": 454431,
"source": "Ethereum Beacon API (ethereum-beacon-api.publicnode.com), keyless",
"exit_queue": {
"validators": 4,
"eth_waiting": 128.02,
"est_clear_hours": 0.1
},
"entry_queue": {
"validators": 3062,
"eth_waiting": 4663.26,
"est_clear_hours": 1.9,
"eligible_waiting": {
"eth": 1426.26,
"validators": 11
},
"not_yet_eligible": {
"eth": 3237,
"validators": 3051
}
},
"net_flow_eth": 4535.24,
"churn_limit_eth_per_epoch": 256
},
"meta": {
"timestamp": "2026-06-13T04:42:42.856Z",
"request_id": "50b3aef7-048e-45a4-8103-05e17e343a23"
},
"status": "ok",
"message": "Staking queue retrieved successfully",
"success": true
}