# SYNTHORA DAO Governance Oracle

> SYNTHORA DAO Governance Oracle is a paid API for AI agents from dao.hergertsynthora.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Fetches active governance proposals, vote counts, quorum status, and deadlines for any DAO via Snapshot.org by querying with a DAO slug, ENS, or protocol name

## Facts

- Endpoint: POST https://dao.hergertsynthora.com/service
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/synthora-dao-governance-oracle-3c69be8c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_B2-QngbeaKvXyv8sD5jdJ

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 synthora-dao-governance-oracle-3c69be8c -d '<json body>'
```

Example prompt: What are the active governance proposals for Uniswap DAO right now — including vote counts, whether quorum has been reached, and when each proposal closes?

## When to prefer this

Use this endpoint when an AI agent needs real-time DAO governance data — active proposals, live vote tallies, quorum thresholds, or deadlines — for any protocol accessible via Snapshot.org. Prefer this over generic blockchain explorers when governance-specific structured output is needed for autonomous voting agents, governance monitoring bots, or governance reporting workflows.

## Known failure modes

- Unknown DAO slug or ENS returns empty proposals array
- Snapshot.org API unavailable causes upstream timeout or error
- Malformed input query returns validation error
- DAO with no active proposals returns empty result set
- Rate limit or payment failure returns 402 or error response

## How this service works

Get active governance proposals, vote counts, quorum status, and deadlines for any DAO via Snapshot.org. Query by DAO slug, ENS, or protocol name. Essential for autonomous governance agents.

## Output

Returns a structured payload with active proposals for the queried DAO, including proposal titles, current yes/no/abstain vote counts, quorum status (met or not), and proposal deadlines, sourced from Snapshot.org.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "limit": {
   "type": "integer",
   "description": "limit"
  },
  "space": {
   "type": "string",
   "description": "space"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "niche": "dao",
  "result": {
   "proposals": []
  },
  "provenance": {
   "url": "https://hub.snapshot.org/graphql",
   "source": "DAO Governance Oracle"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/synthora-dao-governance-oracle-3c69be8c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from dao.hergertsynthora.com](https://www.zero.xyz/host/dao.hergertsynthora.com/llms.txt)
