Skip to main content

/rounds

Returns a list of all rounds available on blockchain

Parameters

  • from OPTIONAL (number) - Number of items to skip for the result set
  • size OPTIONAL (number) - Number of items to retrieve
  • validatorOPTIONAL (string) - Filter by validator
  • condition OPTIONAL (string) -Filter by condition
  • shard OPTIONAL (number) - Filter by shard identifier
  • epoch OPTIONAL (string) - Filter by epoch number

Returns

  • blockWasProposed: (boolean)
  • round : (number)
  • shard: (number)
  • epoch: (number)
  • timestamp : (number)

Example

Request

curl -X 'GET' \
'https://elrond-api.public.blastapi.io/rounds?shard=2&epoch=720' \
-H 'accept: application/json'

Result

[
{
"blockWasProposed": true,
"round": 10383123,
"shard": 2,
"epoch": 720,
"timestamp": 1658416338
},
{
"blockWasProposed": true,
"round": 10383122,
"shard": 2,
"epoch": 720,
"timestamp": 1658416332
}
]