v1

latestOpenAPI 3.0.0MIT2026-07-17124105392.5 KB
Cardano » Governance

DRep votes

History of Drep votes.

get/governance/dreps/{drep_id}/votes

Path parameters

drep_idstring required

Bech32 or hexadecimal drep ID.

Query parameters

countinteger

The number of results displayed on one page.

pageinteger

The page number for listing the results.

order'asc' | 'desc'

The ordering of items from the point of view of the blockchain, not the page listing itself. By default, we return oldest first, newest last.

Response

Return the DRep votes

tx_hashstring required

Hash of the vote transaction.

cert_indexinteger required

Index of the certificate within the vote transaction.

proposal_idstring required

Governance Action Identifier (CIP-0129) of the proposal being voted on.

proposal_tx_hashstring required

Hash of the proposal transaction.

proposal_cert_indexinteger required

Index of the certificate within the proposal transaction.

vote'yes' | 'no' | 'abstain' required

The Vote. Can be one of yes, no, abstain.

Example response

[
  {
    "tx_hash": "b302de601defdf11a5261ed31a263804dac4a582a888c998ce24dec5",
    "cert_index": 2,
    "proposal_id": "gov_action1k2jertppnnndejjcglszfqq4yzw8evzrd2nt66rr6rqlz54xp0zsq05ecsn",
    "proposal_tx_hash": "b2a591ac219ce6dcca5847e0248015209c7cb0436aa6bd6863d0c1f152a60bc5",
    "proposal_cert_index": 0,
    "vote": "yes"
  },
  {
    "tx_hash": "b302de601defdf11a5261ed31a263804dac4a582a888c998ce24dec5",
    "cert_index": 3,
    "proposal_id": "gov_action1zyg3zyg3zyg3zyg3zyg3zyg3zyg3zyg3zyg3zyg3zyg3zyg3zygsq6dmejn",
    "proposal_tx_hash": "2dd15e0ef6e6a17841cb9541c27724072ce4d4b79b91e58432fbaa32d9572531",
    "proposal_cert_index": 1,
    "vote": "abstain"
  }
]