# DAO Governance Proposals Feed

> DAO Governance Proposals Feed is a paid API for AI agents from api402x.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-13).

Returns active and recent governance proposals across major DAOs with onchain and Snapshot voting data, vote counts, and status.

## Facts

- Endpoint: GET https://api402x.com/dao-proposals
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/dao-governance-proposals-feed-d781a954
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_c2Uhc4xjaKb0JfneWbKz1

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 dao-governance-proposals-feed-d781a954
```

Example prompt: What DAO governance proposals are currently active and how is the voting going — show me the vote counts and how much time is left to vote for ENS, Uniswap, and Arbitrum?

## When to prefer this

Choose this endpoint when you need real-time, aggregated DAO governance proposal data combining both onchain and Snapshot off-chain signals in a single call, especially when you need vote tallies, timing data, and discrepancy detection across multiple major DAOs (ENS, Uniswap, Arbitrum). Prefer this over manual Snapshot or Etherscan queries when you need cross-DAO coverage with structured, normalized output and onchain verification timestamps.

## Known failure modes

- Payment not provided or incorrect USDC amount — 402 Payment Required response
- Upstream onchain or Snapshot data temporarily unavailable — degraded:true flag in response with partial results
- No active proposals found — count:0 with empty proposals array
- Rate limiting or provider-side throttling — 429 or 503 error
- Invalid query parameters — 400 Bad Request

## How this service works

Onchain- and crypto-market data for trading AI agents. Payment via x402 (USDC, exact scheme).

## Output

Returns a JSON object with a list of governance proposals across supported DAOs (e.g. ENS, Uniswap, Arbitrum), each containing the proposal title, ID, chain, proposer address, vote tallies (for/against/abstain with token units), current status (active/passed/expired), open/close timestamps, time remaining in seconds, vote type (onchain_binding or snapshot), quorum requirement, onchain verification timestamp, after-close action details (e.g. Timelock queue), and any discrepancy notes between onchain and Snapshot data. Also includes a sources_status map showing data availability per DAO and whether the result is degraded.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "count": 1,
  "degraded": false,
  "proposals": [
   {
    "dao": "ENS",
    "chain": "eip155:1",
    "links": {
     "explorer": "https://etherscan.io/address/0x323A76393544d5ecca80cd6ef2A560C6a395b7E3"
    },
    "title": "Proposal #806192114508…",
    "votes": {
     "for": "1146479.618632655947352941",
     "unit": "ENS",
     "abstain": "0",
     "against": "387647.529426331501519092"
    },
    "status": "active",
    "sources": [
     "onchain"
    ],
    "opens_at": null,
    "proposer": "0xb8c2C29ee19D8307cb7255e1Cd9CbDE883A267d5",
    "closes_at": "2026-08-08T21:10:20.879Z",
    "vote_type": "onchain_binding",
    "fetched_at": "2026-08-05T21:23:08.879Z",
    "after_close": {
     "code": "onchain_timelock",
     "detail": "Onchain vote. If it passes, it moves into the Timelock queue and becomes executable after the contract's delay."
    },
    "discrepancy": "This ENS onchain vote is currently active, but Snapshot shows zero active or pending proposals for this DAO — the off-chain signal stays silent about it.",
    "proposal_id": "80619211450810140112687536515944199882433060764177806587986222097717655810120",
    "quorum_required": null,
    "discrepancy_check": {
     "detail": "Cross-checked against ENS's off-chain venue, which is live and currently shows no active or pending proposal for this DAO — so the onchain vote above is not mirrored off-chain.",
     "status": "checked"
    },
    "onchain_verified_at": "2026-08-05T21:23:08.879Z",
    "time_remaining_seconds": 258430
   }
  ],
  "generated_at": "2026-08-05T21:23:08.879Z",
  "sources_status": {
   "ENS": {
    "onchain": "ok",
    "snapshot": "ok"
   },
   "Uniswap": {
    "onchain": "ok",
    "snapshot": "ok"
   },
   "Arbitrum": {
    "onchain": "ok",
    "snapshot": "ok"
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/dao-governance-proposals-feed-d781a954/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api402x.com](https://www.zero.xyz/host/api402x.com/llms.txt)
