Get Validators
This API endpoint allows you to retrieve information about your validators.
HTTP Request
Use a POST
request to the endpoint.
Path Params: No param
Request Params
Request:
Use a
POST
request to the/api/v1/validator/details
endpoint.You can optionally provide:
pubkeys (array): List of specific validator keys to query (if empty, all your validators are included).
withdrawal_address: Filter validators by their withdrawal address.
Pagination details (page & limit): Control the number of results displayed per page.
Parameter name | Data type | Whether it must be passed. | Description |
pubkeys | array | false | Verifier list |
withdrawal_address | string | false | Withdrawal address |
page | int | false | Page number (default is 1) |
limit | int | false | Number of entries per page (default is 10, maximum support is 1000) |
Response
Parameter name | Data type | Description |
network | string | network |
pubkey | string | pubkey |
withdrawal_address | string | Consensus layer withdrawal address |
withdrawal_credentials | string | Consensus layer withdrawal voucher |
fee_recipient_address | string | Execution layer reward receiving address |
deposit_from_address | string | Deposit from address |
status | string | Validator status: https://hackmd.io/@protolambda/validator_status |
slashed | boolean | Was slashed |
activation_epoch | string |
|
exit_epoch | string |
|
withdrawable_epoch | string |
|
estimated_active_at | string | Estimated activation time |
estimated_exit_at | string | Estimated exit time |
estimated_withdrawal_at | string | Estimated withdrawal time |
is_need_exit | boolean | Whether to initiate an exit |
is_post_exit | boolean | Whether the exit request is broadcast to the chain |
Example
Last updated