# Snapshot DAO Proposal Monitor

> Snapshot DAO Proposal Monitor is a paid API for AI agents from x402-deployer.x402-deployer.workers.dev, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-15).

Fetches recent DAO proposals, vote tallies, and voter counts for any Snapshot governance space, with an optional AI-generated TLDR summary.

## Facts

- Endpoint: POST https://x402-deployer.x402-deployer.workers.dev/dao-proposal-monitor
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-deployer-x402-deployer-workers-dev-708572b6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8FReuzbAyPTbQ1mpr-8fF

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 x402-deployer-x402-deployer-workers-dev-708572b6 -d '<json body>'
```

Example prompt: Pull the latest 5 proposals from the Uniswap Snapshot governance space, including vote tallies and voter counts, and give me a Venice TLDR for each one.

## When to prefer this

Use this endpoint when you need real-time DAO governance data from Snapshot.org — specifically vote tallies, voter counts, and proposal listings for any Snapshot space — especially when you also want an AI-generated plain-English summary via Venice. Prefer this over manual Snapshot API calls when you need a single bundled response with optional summarization.

## Known failure modes

- Invalid or non-existent Snapshot space ID returns empty results or 404
- Snapshot API rate limit or downtime causes fetch failure
- Venice TLDR generation fails if the service is unavailable
- Malformed request body returns 400 error
- Payment not received results in 402 payment required

## How this service works

Snapshot.org DAO proposal monitor. Recent proposals + vote tallies + voter counts for any Snapshot space. Optional Venice TLDR.

## Output

Returns a list of recent DAO proposals from the specified Snapshot space, each with vote tallies (for/against/abstain), voter participation counts, proposal status, and optionally a Venice-generated plain-language summary of what the proposal is about.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "required": [
      "space"
     ],
     "properties": {
      "limit": {
       "type": "number",
       "description": "Max proposals to return. 1-50. Default 10 (most-recent-first)."
      },
      "space": {
       "type": "string",
       "description": "Snapshot space slug, typically an ENS name (e.g. 'aave.eth', 'uniswap', 'ens.eth', 'arbitrumfoundation.eth')."
      },
      "state": {
       "enum": [
        "active",
        "closed",
        "pending",
        "all"
       ],
       "type": "string",
       "description": "Filter by proposal state. Default 'all'."
      },
      "summarize": {
       "type": "boolean",
       "description": "If true, generates a Venice-LLM TLDR per proposal (extra latency). Default false."
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "space": {
       "type": "string"
      },
      "state": {
       "type": "string"
      },
      "source": {
       "type": "string"
      },
      "proposals": {
       "type": "array"
      },
      "space_info": {
       "type": "null"
      },
      "proposal_count": {
       "type": "integer"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-deployer-x402-deployer-workers-dev-708572b6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-deployer.x402-deployer.workers.dev](https://www.zero.xyz/host/x402-deployer.x402-deployer.workers.dev/llms.txt)
