# DeGov Agent API – Voter Profile Lookup

> DeGov Agent API – Voter Profile Lookup 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 governance profile and activity data for a specific DAO voter by their voter ID

## Facts

- Endpoint: GET https://agent-api.degov.ai/v2/voters/%7BvoterId%7D
- 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-profile-lookup-dea136de
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_E3BCt24WaddAQYzCaqIhn

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-profile-lookup-dea136de
```

Example prompt: Pull up the DAO governance profile for voter 0xAbc123... — I want to see their voting history, participation stats, and voting power across DAOs.

## When to prefer this

Use this endpoint when you need detailed governance profile data for a single, known voter address — especially when you want voting history, power, and cross-DAO participation in a machine-readable format. Prefer this over broader DAO or proposal endpoints when the focus is on a specific participant's behavior. It is ideal for due diligence on delegates, governance researchers, or any agent workflow that needs per-voter analytics without scraping block explorers.

## Known failure modes

- Invalid or malformed voterId returns a 400 or 404 error
- Voter not found in DeGov's indexed data returns an empty or not-found response
- Missing or invalid payment header (x402 or x-degov-api-token) returns a 402 Payment Required error
- Rate limiting or quota exceeded returns a 429 error
- Voter exists on-chain but is not yet indexed by DeGov returns incomplete data

## 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 object containing the voter's profile details, including their voting power, governance participation history, list of DAOs they've voted in, proposal votes cast (with positions and timestamps), and any other metadata associated with the voter ID.

## 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-profile-lookup-dea136de/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)
