# DeGov Agent API – Voter Vote History

> DeGov Agent API – Voter Vote History 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).

Returns the on-chain voting history for a specific DAO voter by their voter ID

## Facts

- Endpoint: GET https://agent-api.degov.ai/v2/voters/%7BvoterId%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-voter-vote-history-114288f6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_QqoFe3w6PsWFesSTVT6G1

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-voter-vote-history-114288f6
```

Example prompt: Can you pull up the full voting history for DAO voter 0x1234abcd — I want to see all the proposals they've voted on and how they voted on each one?

## When to prefer this

Use this endpoint when you need to retrieve the full governance voting history for a specific known voter (by their voter ID or wallet address) across DAOs. Prefer this over proposal-centric endpoints when the focus is on a participant's behavior rather than a specific proposal's outcome.

## Known failure modes

- Unknown voterId returns 404 or empty result set
- Malformed voterId path parameter causes 400 bad request
- Missing or invalid authentication (x-degov-api-token or x402 payment) returns 402 Payment Required
- Rate limiting or quota exceeded returns 429
- Voter has no voting history returns empty array

## 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

A JSON list of vote records associated with the specified voter ID, including proposal identifiers, vote choices (for/against/abstain), voting power used, timestamps, and the DAO or governance context for each vote.

## 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-voter-vote-history-114288f6/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)
