v1

latestOpenAPI 3.0.0MIT2026-07-17124105392.5 KB
Cardano » Pools

Stake pool votes

History of stake pools votes.

get/pools/{pool_id}/votes

Path parameters

pool_idstring required

Bech32 or hexadecimal pool 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 pool votes.

tx_hashstring required

Hash of the proposal transaction.

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,
    "vote": "yes"
  }
]