Skip to main content

Listing of previous epochs

GET /epochs/:number/previous

Return the list of epochs preceding a specific epoch.

Request

Path Parameters

    number integer required

    Number of the epoch

    Example: 225

Query Parameters

    count integer

    Possible values: >= 1 and <= 100

    Default value: 100

    The number of results displayed on one page.

    page integer

    Possible values: >= 1 and <= 21474836

    Default value: 1

    The page number for listing the results

Responses

Return the epoch data


Schema
  • Array [
  • epoch integer required

    Epoch number

    start_time integer required

    Unix time of the start of the epoch

    end_time integer required

    Unix time of the end of the epoch

    first_block_time integer required

    Unix time of the first block of the epoch

    last_block_time integer required

    Unix time of the last block of the epoch

    block_count integer required

    Number of blocks within the epoch

    tx_count integer required

    Number of transactions within the epoch

    output string required

    Sum of all the transactions within the epoch in Lovelaces

    fees string required

    Sum of all the fees within the epoch in Lovelaces

    active_stake string nullable required

    Sum of all the active stakes within the epoch in Lovelaces

  • ]
Loading...