# governance-proposals

> governance-proposals is a paid API for AI agents from payai.agentstools.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Lists and filters a DAO's governance proposals from Snapshot, normalized into a unified schema with scores, quorum, vote counts, and lifecycle state.

## Facts

- Endpoint: GET https://payai.agentstools.dev/governance/proposals
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/governance-proposals-fc0b60f8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hK5aFfljtJ3rA09zE_HEW

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 governance-proposals-fc0b60f8
```

Example prompt: Can you pull the current active governance proposals for Uniswap on Snapshot — show me the titles, vote counts, scores per choice, quorum, and start/end dates?

## When to prefer this

Prefer this endpoint when you need normalized, cross-protocol governance data from Snapshot in a consistent schema without building your own Snapshot GraphQL queries. Ideal when you need per-choice scores, quorum data, and lifecycle state filtering in a single call. Use over direct Snapshot API access when you want protocol aliases instead of raw space-ids and a pre-normalized response format.

## Known failure modes

- Unknown or misspelled Snapshot space-id or protocol alias returns an empty list or 404-style error
- Invalid state filter value returns a validation error
- Limit exceeding 30 is rejected with a schema validation error
- Snapshot API unavailability causes upstream timeout or 502 error
- DAOs with no proposals in the requested state return an empty array

## How this service works

List a DAO's governance proposals from Snapshot, normalized into one schema: id, title, state, choices, per-choice scores, scores_total, quorum, vote count, start/end, author, snapshot block, strategies and a link-back. Filter by state; pass a Snapshot space-id or a known protocol alias.

## Output

Returns a list of governance proposals normalized to a unified schema, each containing: proposal id, title, lifecycle state (active/pending/closed), available choices, per-choice vote scores, total score, quorum threshold, total vote count, start and end timestamps, author address, snapshot block number, voting strategies used, and a direct link back to the proposal on Snapshot.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "space"
     ],
     "properties": {
      "limit": {
       "type": "integer",
       "maximum": 30,
       "minimum": 1,
       "description": "Max proposals to return (default 15, cap 30)"
      },
      "space": {
       "type": "string",
       "description": "Snapshot space-id (e.g. uniswapgovernance.eth) or a known protocol alias (e.g. uniswap)"
      },
      "state": {
       "enum": [
        "active",
        "pending",
        "closed"
       ],
       "type": "string",
       "description": "Filter proposals by lifecycle state"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/governance-proposals-fc0b60f8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from payai.agentstools.dev](https://www.zero.xyz/host/payai.agentstools.dev/llms.txt)
