v1

latestOpenAPI 3.0.0MIT2026-07-17124105392.5 KB
Cardano » Governance

GovActionID proposal

Proposal information.

get/governance/proposals/{gov_action_id}

Path parameters

gov_action_idstring required

Governance Action Identifier (CIP-0129)

Response

Return the proposal information content

idstring required

Governance Action Identifier (CIP-0129)

tx_hashstring required

Hash of the proposal transaction.

cert_indexinteger required

Index of the certificate within the proposal transaction.

governance_type'hard_fork_initiation' | 'new_committee' | 'new_constitution' | 'info_action' | 'no_confidence' | 'parameter_change' | 'treasury_withdrawals' required

Type of proposal.

governance_descriptionobject nullable required

An object describing the content of this GovActionProposal in a readable way.

depositstring required

The deposit amount paid for this proposal.

return_addressstring required

Bech32 stake address of the reward address to receive the deposit when it is repaid.

ratified_epochinteger nullable required

The epoch at which the proposal was ratified. Null if the proposal has not been ratified.

enacted_epochinteger nullable required

The epoch at which the proposal was enacted. Null if the proposal has not been enacted.

dropped_epochinteger nullable required

The epoch at which the proposal was dropped. A proposal is dropped if it expires or if any of its dependencies expire.

expired_epochinteger nullable required

The epoch at which the proposal expired. Null if the proposal has not expired.

expirationinteger required

The epoch at which this governance action will expire.

Example response

{
  "id": "gov_action1zyg3zyg3zyg3zyg3zyg3zyg3zyg3zyg3zyg3zyg3zyg3zyg3zygsq6dmejn",
  "tx_hash": "2dd15e0ef6e6a17841cb9541c27724072ce4d4b79b91e58432fbaa32d9572531",
  "cert_index": 1,
  "governance_type": "treasury_withdrawals",
  "deposit": "12000",
  "return_address": "stake_test1urd3hs7rlxwwdzthe6hj026dmyt3y0heuulctscyydh2kgck6nkmz",
  "governance_description": {
    "tag": "InfoAction"
  },
  "ratified_epoch": null,
  "enacted_epoch": 123,
  "dropped_epoch": null,
  "expired_epoch": null,
  "expiration": 120
}