---
title: "Returns a list of votes for a governance proposal."
method: GET
path: "/consensus/proposals/{proposal_id}/votes"
---

# Returns a list of votes for a governance proposal.

`GET /consensus/proposals/{proposal_id}/votes`

## Path parameters

- `proposal_id` integer, required

## Query parameters

- `limit` integer
- `offset` integer

## Response `200`

A JSON object containing a list of votes for a governance proposal.

- ProposalVotes — A list of votes for a governance proposal.
  - `total_count` integer, required — The total number of records that match the query, i.e. the number of records the query would return with limit=infinity.
  - `is_total_count_clipped` boolean, required — Whether total_count is clipped for performance reasons.
  - `proposal_id` integer, required — The unique identifier of the proposal.
  - `votes` ProposalVote[], required — The list of votes for the proposal.
    - `address` string, required — The staking address casting this vote.
    - `vote` string, required — The vote cast.
    - `height` integer — The block height at which this vote was recorded.
    - `timestamp` string, date-time — The second-granular consensus time of the block in which this vote was cast.

## Other responses

- `400` — A human-readable error message.
- `404` — An empty response indicating that the requested resource was not found.
- `500` — A human-readable error message.

---

[API](https://skmtc.net/oasisprotocol/apis/oasis-nexus-api-v1.md) · [All operations](https://skmtc.net/oasisprotocol/apis/oasis-nexus-api-v1/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/oasisprotocol/oasis-nexus-api-v1/revisions/a841981f8ee1/schema)
