curl --request GET \
--url 'https://beaconcha.in/api/v1/slot/{slot}/voluntaryexits?apikey='{
"status": "OK",
"data": [
{
"block_index": 0,
"block_root": "0xf3fe4ac2ddab3c97ff4565e305c4451b18ff027559e0e520e884fd3de12c67a4",
"block_slot": 12771160,
"epoch": 399098,
"signature": "0xab6b6d826c14b6141e3406c5227ead15b133993195e96edc05fdeba998d0e0fd96e4ec5f47f6c9eec1558a59042c03d1016e679faf7300bc14737c7178c5cc01b2ea5f345e13cc2e29eeeefaf18cdcde6c0a99d80923ecf8ff8619a4d2511f6e",
"validatorindex": 1815428
}
]
}Retrieve all voluntary exit operations included in the beacon block for a specific slot. A voluntary exit is a signed message from a validator indicating the epoch at which they choose to exit the active set.
Provide a slot number or use the keyword latest to fetch from the most recently processed slot. The response lists each voluntary exit along with block inclusion metadata.
curl --request GET \
--url 'https://beaconcha.in/api/v1/slot/{slot}/voluntaryexits?apikey='{
"status": "OK",
"data": [
{
"block_index": 0,
"block_root": "0xf3fe4ac2ddab3c97ff4565e305c4451b18ff027559e0e520e884fd3de12c67a4",
"block_slot": 12771160,
"epoch": 399098,
"signature": "0xab6b6d826c14b6141e3406c5227ead15b133993195e96edc05fdeba998d0e0fd96e4ec5f47f6c9eec1558a59042c03d1016e679faf7300bc14737c7178c5cc01b2ea5f345e13cc2e29eeeefaf18cdcde6c0a99d80923ecf8ff8619a4d2511f6e",
"validatorindex": 1815428
}
]
}The slot to fetch. Provide an integer slot number (>= 0) or the special tag latest for the most recently processed slot.
Slot number (>= 0)
x >= 012751688
The slot was found and its voluntary exits are returned in the data array. If the slot has no voluntary exits, the array is empty.
Was this page helpful?