# Snapshot Governance Proposal Analyzer

> Snapshot Governance Proposal Analyzer is a paid API for AI agents from payai.agentstools.dev, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Fetches a Snapshot proposal and returns deterministic governance analytics: quorum progress, leading choice, participation stats, time remaining, top voters, and a structured outcome digest.

## Facts

- Endpoint: GET https://payai.agentstools.dev/governance/proposal
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/snapshot-governance-proposal-analyzer-3c95274c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_dXZSMISbYuEHw9c7Bk4vF

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 snapshot-governance-proposal-analyzer-3c95274c
```

Example prompt: What's the current status of Snapshot proposal 0xabc123...? I want to know if quorum has been met, which choice is winning, by how much, and how much time is left.

## When to prefer this

Use this endpoint when you need deterministic, LLM-free governance analytics for a specific Snapshot proposal — particularly when quorum math, vote margins, or participation figures must be computed accurately without hallucination risk. Prefer this over general web search or LLM summarization when you need structured, machine-readable governance data with reliable numeric outputs.

## Known failure modes

- Invalid or malformed proposal ID (not a valid 0x hex string) returns an error
- Proposal ID does not exist on Snapshot returns not-found error
- Snapshot API unavailability causes upstream timeout or service error
- Expired proposals may return data but with zero seconds remaining and a closed status

## How this service works

One Snapshot proposal plus DETERMINISTIC governance semantics (no LLM): quorum progress and whether quorum is met, the leading choice and its margin, participation (votes and total voting power), seconds remaining, an honest outcome projection (current leader, not a final result), the top voters, and a structured digest.

## Output

A structured JSON response containing: quorum progress as a percentage and a boolean indicating whether quorum is met, the current leading choice and its margin over the runner-up, total vote count and aggregate voting power, seconds remaining until the proposal closes, an honest outcome projection (current leader only, not a final result), a ranked list of top voters with their voting power, and a human-readable digest summarizing all of the above.

## 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": [
      "proposal_id"
     ],
     "properties": {
      "proposal_id": {
       "type": "string",
       "description": "Snapshot proposal id (0x… hex)"
      }
     }
    }
   },
   "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/snapshot-governance-proposal-analyzer-3c95274c/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)
