v1

latestOpenAPI 3.0.3Apache-2.02026-07-1348142206.6 KB
network

Get network stake information

Returns the network's current stake information.

get/api/v1/network/stake

Response

OK

max_stake_rewardedinteger required

The maximum amount of tinybar that can be staked for reward while still achieving the maximum per-hbar reward rate

max_staking_reward_rate_per_hbarinteger required

The maximum reward rate, in tinybars per whole hbar, that any account can receive in a day

max_total_rewardinteger required

The total tinybars to be paid as staking rewards in the ending period, after applying the settings for the 0.0.800 balance threshold and the maximum stake rewarded

node_reward_fee_fractionnumber float required

The fraction between zero and one of the network and service fees paid to the node reward account 0.0.801

reserved_staking_rewardsinteger required

The amount of the staking reward funds of account 0.0.800 reserved to pay pending rewards that have been earned but not collected

reward_balance_thresholdinteger required

The unreserved tinybar balance of account 0.0.800 required to achieve the maximum per-hbar reward rate

stake_totalinteger required

The total amount staked to the network in tinybars the start of the current staking period

staking_period_durationinteger required

The number of minutes in a staking period

staking_periods_storedinteger required

The number of staking periods for which the reward is stored for each node

staking_reward_fee_fractionnumber float required

The fraction between zero and one of the network and service fees paid to the staking reward account 0.0.800

staking_reward_rateinteger required

The total number of tinybars to be distributed as staking rewards each period

staking_start_thresholdinteger required

The minimum balance of staking reward account 0.0.800 required to active rewards

unreserved_staking_reward_balanceinteger required

The unreserved balance of account 0.0.800 at the close of the just-ending period; this value is used to compute the HIP-782 balance ratio

Example response

{
  "max_stake_rewarded": 10,
  "max_staking_reward_rate_per_hbar": 17808,
  "max_total_reward": 20,
  "node_reward_fee_fraction": 1,
  "reserved_staking_rewards": 30,
  "reward_balance_threshold": 40,
  "stake_total": 35000000000000000,
  "staking_period": {
    "from": "1655164800.000000000",
    "to": "1655251200.000000000"
  },
  "staking_period_duration": 1440,
  "staking_periods_stored": 365,
  "staking_reward_fee_fraction": 1,
  "staking_reward_rate": 100000000000,
  "staking_start_threshold": 25000000000000000,
  "unreserved_staking_reward_balance": 50
}