# Snapshot Governance Proposals Catalyst Feed

> Snapshot Governance Proposals Catalyst Feed is a paid API for AI agents from x402-services-production.up.railway.app, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Fetches active or recent on-chain governance proposals from Snapshot, ranked by voting power, with title, space, votes, and end time — surfacing catalysts that may move token prices.

## Facts

- Endpoint: POST https://x402-services-production.up.railway.app/api/catalysts/governance
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/snapshot-governance-proposals-catalyst-feed-c06e5e83
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-B0d3BP7F_GXqoNzaoYig

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-proposals-catalyst-feed-c06e5e83 -d '<json body>'
```

Example prompt: Pull the top 15 active governance proposals from the Aave Snapshot space right now, ranked by voting power — I want to see what's being voted on that could move the AAVE price.

## When to prefer this

Use this endpoint when you need real-time or recent DAO governance intelligence from Snapshot — especially when assessing market catalysts, tracking specific protocol governance (e.g. aave.eth, uniswap.eth), or monitoring voting power dynamics. Prefer over generic blockchain explorers when you specifically want ranked, voting-power-weighted governance proposals with end times and vote counts.

## Known failure modes

- Invalid Snapshot space ID returns empty results or 404-style error
- State filter with no matching proposals returns empty array
- Limit exceeding 30 is silently capped or returns an error
- Snapshot API downstream outage causes failure or stale data
- Omitting space for global scope may return very large or noisy result sets

## How this service works

On-chain governance activity via Snapshot: active (or recent) proposals ranked by voting power, with title, space, votes, and end time. Send { space?, state?, limit? }. Governance catalysts that can move token prices.

## Output

Returns a ranked list of governance proposals from Snapshot including proposal title, the DAO space it belongs to, current vote counts, total voting power, proposal state, and end time. Proposals are ordered by voting power and represent potential market-moving catalysts.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "limit": {
   "type": "number",
   "description": "Max proposals, default 10 (max 30)"
  },
  "space": {
   "type": "string",
   "description": "Snapshot space id, e.g. aave.eth; omit for global"
  },
  "state": {
   "type": "string",
   "description": "\"active\" (default), \"closed\", \"pending\", or \"all\""
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/snapshot-governance-proposals-catalyst-feed-c06e5e83/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-services-production.up.railway.app](https://www.zero.xyz/host/x402-services-production.up.railway.app/llms.txt)
