Validators Summary
Returns a summary of your validators, with counts by status and ETH balance. By default, returns data for all tracked validators, can be filtered for only the ones operated by Figment.
network
- Type: string
- Enum: required
Allowed:
mainnet hoodi
operated_by
- Type: string
- Enum: Defaults to null
Allowed:
figment
Responses
200 Validator summary
- Type: object
data
- Type: object
validator_counts
- Type: object
validator_counts object
400 Invalid operated_by
401 Invalid API key
422 Invalid network
Example cURL Request
curl --request GET \
--url 'https://api.figment.io/ethereum/validators_summary?network=mainnet&operated_by=null' \
--header 'accept: application/json' \
--header 'x-api-key: your-api-key-here'
Example Response
{
"data": {
"validator_counts": {
"total": 0,
"by_status": {
"provisioned": 0,
"funding_requested": 0,
"deposited_not_finalized": 0,
"deposited": 0,
"pending_initialized": 0,
"pending_queued": 0,
"active_ongoing": 0,
"active_exiting": 0,
"active_slashed": 0,
"exited_slashed": 0,
"exited_unslashed": 0,
"withdrawal_possible": 0,
"withdrawal_done": 0
}
}
}
}