curl --request POST \
--url https://beaconcha.in/api/v2/ethereum/queues \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"chain": "mainnet"
}
'{
"data": {
"deposit_queue": {
"churn": "<string>",
"deposit_count": 1,
"balance": "<string>",
"estimated_processed_at": 1
},
"exit_queue": {
"churn": "<string>",
"count": 1,
"balance": "<string>",
"estimated_processed_at": 1
},
"withdrawal_sweep": {
"last_swept_validator_index": 123,
"estimated_sweep_delay": 1
},
"finality": "not_finalized"
}
}Returns information about the various staking related queues (e.g. activation, exit, etc) and how long the expected wait time is.
curl --request POST \
--url https://beaconcha.in/api/v2/ethereum/queues \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"chain": "mainnet"
}
'{
"data": {
"deposit_queue": {
"churn": "<string>",
"deposit_count": 1,
"balance": "<string>",
"estimated_processed_at": 1
},
"exit_queue": {
"churn": "<string>",
"count": 1,
"balance": "<string>",
"estimated_processed_at": 1
},
"withdrawal_sweep": {
"last_swept_validator_index": 123,
"estimated_sweep_delay": 1
},
"finality": "not_finalized"
}
}The Ethereum chain to query.
mainnet, hoodi Successful response.
Response containing basic information about the queue.
Show child attributes
Was this page helpful?