/rounds
Returns a list of all rounds available on blockchain
Parameters
from
OPTIONAL(number)
- Number of items to skip for the result setsize
OPTIONAL(number)
- Number of items to retrievevalidator
OPTIONAL(string)
- Filter by validatorcondition
OPTIONAL(string)
-Filter by conditionshard
OPTIONAL(number)
- Filter by shard identifierepoch
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
}
]