stakingValidatorStakers
Get the full staker list for a specific validator.
Overview
Returns the list of all delegators for a specific validator, sorted by delegation amount descending. Includes the validator's metadata and the snapshot timestamp.
Request
Endpoint:
POST /info
{
"type": "stakingValidatorStakers",
"validator": "0x000000000056f99d36b6f2e0c51fd41496bbacb8"
}Parameter
Type
Required
Description
validator
string
Yes
Validator address (case-insensitive)
Response
{
"timestamp_ms": 1776010486341,
"address": "0x000000000056f99d36b6f2e0c51fd41496bbacb8",
"name": "ValiDAO",
"description": "The People's Validator...",
"commission_bps": 400,
"total_delegated": "10057.57964234",
"effective_stake": "10057.57964234",
"staker_count": 1234,
"is_jailed": false,
"stakers": [
{
"address": "0xabc123...",
"amount": "5000.12345678"
}
]
}Response Fields
Includes all fields from stakingOverview validator objects, plus:
Field
Type
Description
stakers
array
List of delegators, sorted by amount descending
stakers[].address
string
Delegator wallet address
stakers[].amount
string
Delegated HYPE amount (decimal string)
Errors
Status
Condition
400
Missing validator field
404
Validator not found or staking snapshot not available
Last updated