v1
latestOpenAPI 3.1.02026-07-243035381.4 MBStaking
Get current staked assets
/v4/data/staking/native/current-assets
100 credits per API call
Get current staked assets for a wallet address. This endpoint returns information about all stake accounts/validators owned by the address, including their state, delegated amount, active amount, and associated validators.
Supported blockchains:
- Solana - solana-mainnet
- Ethereum - ethereum-mainnet
To get started:
- Provide a chain and wallet address.
- For Solana, response contains stakeAddresses with stake account data.
- For Ethereum, response contains validators with validator index and validator pubkey.
- Results are sorted by active amount in descending order (highest active stake first).
get/v4/data/staking/native/current-assets
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).
Response
OK
Example response
{
"address": "EcH12jxhrbhF6qHqRzWpZ8rZU3TjG3sX6F67zP61oDJG",
"totalStaked": "129196.00456576",
"totalActive": "129196.00456576",
"stakeAddresses": [
{
"stakeAddress": "8JMUtSoHS3h28tL7AJHP1SbXfhfeZSnpJ1hWZNCMSw9G",
"validatorAddress": "RuBYsjLeJYtWXbabcxPbNcbbFXQvMLrJGutpcqVRomz",
"delegated": "64598.00228288",
"active": "64598.00228288",
"state": "active"
}
]
}