Skip to main content

/stake

Returns general staking information

Parameters

  • none

Returns

  • totalValidators : (number) - number of validators
  • activeValidators : (number) - number of active validators
  • queueSize : (number)
  • totalStaked : (string) - total amount staked

Example

Request

curl -X 'GET' \
'https://elrond-api.public.blastapi.io/stake' \
-H 'accept: application/json'

Result

{
"totalValidators": 3200,
"activeValidators": 3188,
"queueSize": 59,
"totalStaked": "13183202016781653905677888"
}