GET
/
stake
/
statistics
Get Staking Statistics
curl --request GET \
  --url https://prv.stake.biya.io/stake/statistics
{
  "total_validators": "<string>",
  "active_validators": "<string>",
  "total_staked_amount": "<string>",
  "rewards_24h": "<string>",
  "annualized_reward_rate": "<string>",
  "timestamp": "<string>",
  "consensus_validators": {
    "block_height": "<string>",
    "count": 123,
    "total": 123,
    "validators": [
      {
        "operator_address": "<string>",
        "consensus_address": "<string>",
        "address": "<string>",
        "pub_key": "<string>",
        "voting_power": "<string>",
        "proposer_priority": "<string>"
      }
    ]
  }
}

Response

200 - application/json

OK

StakingStatisticsResponse contains staking statistics

total_validators
string

Total number of validators

active_validators
string

Number of active validators (not jailed and bonded)

total_staked_amount
string

Total staked amount in BYB (as string to handle large numbers)

rewards_24h
string

24h total rewards in BYB (as string to handle large numbers)

annualized_reward_rate
string

Annualized reward rate as percentage (e.g., "10.5" means 10.5%)

timestamp
string

Timestamp when statistics were calculated

consensus_validators
object

Validators participating in consensus (from CometBFT)