v53

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

Get protocol configuration for a specific epoch

Returns the information related to the protocol configuration at a given epoch:

  • epoch
  • protocol parameters
  • cardano transactions signing configuration
  • enabled signed entity types
get/protocol-configuration/{epoch}

Path parameters

epochinteger required
Example:419

Epoch of the protocol configuration to list

Response

protocol configuration found

available_signed_entity_typesSignedEntityTypes[] required

Available signed entity types that are signed by the aggregator

Example response

{
  "protocol_parameters": {
    "k": 9,
    "m": 77,
    "phi_f": 0.5
  },
  "cardano_transactions_signing_config": {
    "security_parameter": 100,
    "step": 10
  },
  "available_signed_entity_types": [
    "MithrilStakeDistribution",
    "CardanoDatabase",
    "CardanoTransactions",
    "CardanoBlocksTransactions"
  ]
}