Display data of confirmed blockchain blocks
Data is served over secure socket layer, avoiding any kind of issue with CORS policies. Online dataset is retrieved by single fully indexed Revo Core node istance powering current official block explorer.
Table of contentsDisplay data of confirmed blockchain blocks
Block info[GET] Request | (JSON) Response |
/block/:height /block/:hash |
Display block data informations based on a specific height or hash. A block contains multiple informations and data sets and returns transaction list confirmed inside the block itself. Exampleshttps://api.beta.revo.network/block/1000 https://api.beta.revo.network/block/00001b235848f8e1adfc5559f185bd47fe0e0d32f9f971ac1e77fa99dab146c0 |
[GET] Request | (JSON) Response |
/blocks /blocks?date=2022-01-01 |
Display all blocks of a specific date. Argument is date in ISO 8601 Date format. Default value: today. Exampleshttps://api.beta.revo.network/blocks https://api.beta.revo.network/blocks?date=2022-01-01 |
[GET] Request | (JSON) Response |
/recent-blocks /recent-blocks?count=5 |
Display recent blocks (default 10). Accepts count as argument Exampleshttps://api.beta.revo.network/recent-blocks https://api.beta.revo.network/recent-blocks?count=5 |