Zum Inhalt springen
GET /v1/queue

Headline: entry vs exit queue ETH, counts, net flow, clear-time estimates

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/ethstakingqueue-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "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
}