v53

latestOpenAPI 3.1.1BSD 3-Clause Licenseraw.githubusercontent.com2026-08-013157111.1 KB

Get information about the aggregator status

Returns the aggregator status information:

  • Current epoch
  • Current Cardano era
  • Current Mithril era
  • Cardano node version
  • Aggregator node version
  • Protocol parameters for current epoch
  • Protocol parameters for next epoch
  • Total number of signers for current epoch
  • Total number of signers for next epoch
  • Total stakes of signers for current epoch
  • Total stakes of signers for next epoch
  • Total of Cardano SPOs
  • Total stakes in Cardano
get/status

Response

aggregator status found

epochinteger required

Cardano chain epoch number

cardano_erastring required

Cardano era

cardano_networkstring required

Cardano network of the aggregator

mithril_erastring required

Mithril era

cardano_node_versionstring required

Version of the Cardano node

aggregator_node_versionstring required

Version of the Aggregator node

total_signersinteger required

The number of signers for the current epoch

total_next_signersinteger required

The number of signers that will be able to sign on the next epoch

total_stakes_signersinteger required

The total stakes of signers for the current epoch

total_next_stakes_signersinteger required

The total stakes of signers for the next epoch

total_cardano_spointeger required

The number of Cardano SPOs

total_cardano_stakeinteger required

The total stakes in Cardano

Example response

{
  "epoch": 329,
  "cardano_era": "Conway",
  "cardano_network": "mainnet",
  "mithril_era": "pythagoras",
  "cardano_node_version": "1.2.3",
  "aggregator_node_version": "4.5.6",
  "protocol": {
    "k": 857,
    "m": 6172,
    "phi_f": 0.2
  },
  "next_protocol": {
    "k": 2422,
    "m": 20973,
    "phi_f": 0.2
  },
  "total_signers": 3,
  "total_next_signers": 72,
  "total_stakes_signers": 123456789,
  "total_next_stakes_signers": 987654321,
  "total_cardano_spo": 5738,
  "total_cardano_stake": 999999999
}