v1
latestOpenAPI 3.1.02026-07-243035381.4 MBStaking
Get staking pools
/v4/data/staking/native/pools
50 credits per API call
Get all available staking pools (validators) on Solana. This endpoint returns comprehensive information about all validators including their address, identity, commission, stake amounts, APY, and additional metadata such as name, website, and location.
Supported blockchains:
- Solana - solana-mainnet
To get started:
- Provide a chain. The API will return all available staking pools (validators) on the Solana network.
- Pools are sorted by activated stake in descending order (highest stake first).
- Each pool includes comprehensive information such as validator identity, commission rate, activated stake, APY (staking, Jito, and total), name, website, location (IP city/country), uptime, vote success rate, and more.
get/v4/data/staking/native/pools
Query parameters
chain'solana-mainnet' required
Example:solana-mainnet
The blockchain to work with.
Response
OK
Example response
{
"pools": [
{
"identity": "5iJDEVRi1nMLwKAWhYbEokZnvBAe15rgFaHGkggVEP9z",
"voteIdentity": "RuBYsjLeJYtWXbabcxPbNcbbFXQvMLrJGutpcqVRomz",
"lastVote": 377568231,
"rootSlot": 377568000,
"credits": 1234567,
"epochCredits": 5000,
"activatedStake": "123456789000000000",
"version": "1.18.0",
"active": true,
"skipRate": 0.05,
"updatedAt": "2024-11-06T12:00:00Z",
"firstEpochWithStake": 100,
"name": "My Validator",
"description": "High-performance validator with 99.9% uptime",
"website": "https://myvalidator.com",
"commission": 5,
"ipCity": "New York",
"ipCountry": "United States",
"voteSuccess": 99.9,
"firstEpochDistance": 773,
"stakeWeight": 0.5,
"uptime": 99.95,
"epoch": 873,
"stakingApy": 7.2,
"totalApy": 7.2
}
]
}