curl --request GET \
--url https://beacon-nd-422-757-666.p2pify.com/0a9d79d93fb2f4a4b1e04695da2b77a7/eth/v1/beacon/pool/voluntary_exits
[
{
"message": {
"epoch": 123,
"validator_index": 123
},
"signature": "<string>"
}
]
curl --request GET \
--url https://beacon-nd-422-757-666.p2pify.com/0a9d79d93fb2f4a4b1e04695da2b77a7/eth/v1/beacon/pool/voluntary_exits
[
{
"message": {
"epoch": 123,
"validator_index": 123
},
"signature": "<string>"
}
]
/eth/v1/beacon/pool/voluntary_exits
method is an API endpoint in the Ethereum Beacon Chain that provides information about the voluntary exits of validators from the network. A voluntary exit occurs when a validator chooses to stop participating in the consensus process and exits the system. This action is irreversible and is typically taken by validators who wish to cease their operations or withdraw their staked ETH after the mandatory exit delay.
none
array
— list of voluntary exit objects.
object
in the array represents a voluntary exit, containing:
epoch
— the epoch at which the validator has exited or is scheduled to exit. In the Ethereum Beacon Chain, epochs are sequential time periods during which blockchain operations occur.validator_index
— the unique index of the validator who is voluntarily exiting. This index is an identifier used within the Beacon Chain to track validators’ activities and status.signature
— the cryptographic signature provided by the validator, confirming their intention to voluntarily exit. This ensures the authenticity and irrevocability of the exit action.withdrawal_credentials
— the credentials that will be used for withdrawing the staked ETH after the exit is processed and the mandatory delay has passed.message_hash
— a hash of the exit message, providing an additional layer of security and verification for the exit process.Beacon pool voluntary exits successfully retrieved
The response is of type object[]
.
Was this page helpful?