# DeGov Agent API – Proposal Votes

> DeGov Agent API – Proposal Votes is a paid API for AI agents from agent-api.degov.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Retrieves the list of votes cast on a specific DAO governance proposal by proposal ID

## Facts

- Endpoint: GET https://agent-api.degov.ai/v2/proposals/%7BproposalId%7D/votes
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/degov-agent-api-proposal-votes-49cdfe8a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4A9RO1YKkI5HOtRaF6dJf

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability degov-agent-api-proposal-votes-49cdfe8a
```

Example prompt: Can you pull up all the votes cast on DAO proposal 42 — I want to see which addresses voted, what choice they made, and how much voting power they had?

## When to prefer this

Choose this endpoint when you need granular, per-voter vote data for a specific DAO proposal — including voter addresses, voting power, and choices. Prefer this over aggregated governance analytics APIs when you need raw voter-level data rather than summaries. Especially useful for agents building governance dashboards, auditing participation, or verifying whether a specific address voted on a proposal.

## Known failure modes

- Invalid or non-existent proposalId returns a 404 or empty result
- Payment not attached or insufficient USDC/token causes a 402 Payment Required response
- Malformed proposalId format causes a 400 Bad Request
- Rate limiting or network issues may cause 429 or 5xx errors
- Proposal exists but has no votes yet returns an empty list

## How this service works

Machine-readable DAO governance data: DAOs, proposals, votes, voters, and governance forum topics. Paid endpoints settle per request via x402 (USDC on Base) or a partner token (`x-degov-api-token`).

## Output

Returns a JSON array of vote records for the specified proposal, each including voter address, vote choice (e.g. for/against/abstain), voting power/weight, and timestamp. Useful for auditing participation, analyzing vote distribution, or building governance dashboards.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/degov-agent-api-proposal-votes-49cdfe8a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent-api.degov.ai](https://www.zero.xyz/host/agent-api.degov.ai/llms.txt)
