# DeGov Proposal Resolve API

> DeGov Proposal Resolve API 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).

Resolves and retrieves structured data for a specific DAO governance proposal by identifier

## Facts

- Endpoint: GET https://agent-api.degov.ai/v2/proposals/resolve
- 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-proposal-resolve-api-43f7407c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_kFu08KnzpZUv5-MGUd3V8

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-proposal-resolve-api-43f7407c
```

Example prompt: Look up the full details and current status of Uniswap governance proposal #42 — I want to know what it proposes, who voted, and whether it passed.

## When to prefer this

Use this endpoint when you need to resolve a specific DAO proposal by its identifier to get full structured details. Prefer this over general DAO listing endpoints when you already know the proposal ID or have a reference and need to expand it into rich metadata. Ideal for agents that need to verify proposal outcomes, display proposal context, or cross-reference governance decisions.

## Known failure modes

- Proposal ID not found — returns 404 or empty result if the identifier doesn't match any known proposal
- Invalid DAO or proposal reference — malformed input yields an error response
- Payment failure — if x402 USDC payment or API token is missing/invalid, returns 402 or 401
- Rate limiting — excessive requests may be throttled
- Stale data — proposal status may lag slightly behind on-chain finality

## 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 structured JSON object containing the resolved proposal's details including title, description, current status (pending/active/succeeded/defeated/executed), vote counts (for/against/abstain), proposer address, timestamps, and associated DAO metadata.

## 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-proposal-resolve-api-43f7407c/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)
