v1
latestOpenAPI 3.1.02026-07-243035381.4 MBStaking
Get current staked assets by validator
/v4/data/staking/native/current-assets-by-validator
100 credits per API call
Get current staked assets grouped by validator for a wallet address.
Supported blockchains:
- Solana - solana-mainnet
- Ethereum - ethereum-mainnet
To get started:
- Provide a chain and wallet address.
- For Solana, response contains validatorAddresses grouped by validator with arrays of stake accounts.
- For Ethereum, response is the same validator-level shape as /staking/native/current-assets and contains validators.
- Results are sorted by delegated amount in descending order (highest delegated stake first).
get/v4/data/staking/native/current-assets-by-validator
Query parameters
chain'solana-mainnet' | 'ethereum-mainnet' required
Example:solana-mainnet
The blockchain to work with.
addressstring required
Example:EcH12jxhrbhF6qHqRzWpZ8rZU3TjG3sX6F67zP61oDJG
The blockchain wallet address (Solana base58 or Ethereum 0x-prefixed withdrawal address).
Response
OK
Example response
{
"address": "EcH12jxhrbhF6qHqRzWpZ8rZU3TjG3sX6F67zP61oDJG",
"totalStaked": "129196.00456576",
"totalActive": "129196.00456576",
"validatorAddresses": [
{
"validatorAddress": "RuBYsjLeJYtWXbabcxPbNcbbFXQvMLrJGutpcqVRomz",
"stakeAddresses": [
"8JMUtSoHS3h28tL7AJHP1SbXfhfeZSnpJ1hWZNCMSw9G"
],
"delegated": "64598.00228288",
"active": "64598.00228288"
}
]
}