v1

latestOpenAPI 3.0.0MIT2026-07-17124105392.5 KB
Cardano » Epochs

Specific epoch

Return the content of the requested epoch.

get/epochs/{number}

Path parameters

numberinteger required

Number of the epoch

Response

Return the epoch data.

epochinteger required

Epoch number

start_timeinteger required

Unix time of the start of the epoch

end_timeinteger required

Unix time of the end of the epoch

first_block_timeinteger required

Unix time of the first block of the epoch

last_block_timeinteger required

Unix time of the last block of the epoch

block_countinteger required

Number of blocks within the epoch

tx_countinteger required

Number of transactions within the epoch

outputstring required

Sum of all the transactions within the epoch in Lovelaces

feesstring required

Sum of all the fees within the epoch in Lovelaces

active_stakestring nullable required

Sum of all the active stakes within the epoch in Lovelaces

Example response

{
  "epoch": 225,
  "start_time": 1603403091,
  "end_time": 1603835086,
  "first_block_time": 1603403092,
  "last_block_time": 1603835084,
  "block_count": 21298,
  "tx_count": 17856,
  "output": "7849943934049314",
  "fees": "4203312194",
  "active_stake": "784953934049314"
}