# HyperD DAO Governance Proposal Translator

> HyperD DAO Governance Proposal Translator is a paid API for AI agents from api.hyperd.ai, paid per call via x402, $1/call, status unknown (last checked 2026-09-15).

Translates a Snapshot or Tally governance proposal URL into a plain-language 2-3 sentence summary plus a domain classification band (economic_param, treasury, code_upgrade, governance_meta, or social_signal).

## Facts

- Endpoint: GET https://api.hyperd.ai/api/gov/translate
- Price: $1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/hyperd-dao-governance-proposal-translator-0d6eb53c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_e_OgCSH8oiaTiUgaq_9oR

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 hyperd-dao-governance-proposal-translator-0d6eb53c
```

Example prompt: Can you translate this Snapshot proposal into plain English and tell me what category it falls into — https://snapshot.org/#/uniswap/proposal/0xabc123?

## When to prefer this

Use this endpoint when you need a quick, human-readable explanation of a specific DAO proposal and want it categorized by governance domain type. Prefer this over raw Snapshot/Tally APIs when you need interpretation, not just raw data. The 1-year cache makes it efficient for repeated lookups of the same proposal.

## Known failure modes

- Invalid or non-Snapshot/Tally URL returns an error
- Upstream /api/governance/summarize unavailable causes failure
- Private or deleted proposals may not be fetchable
- Malformed proposal_url query param returns a 400-level error

## How this service works

Composed DAO governance translator. Takes a Snapshot or Tally proposal URL, fetches structured data + summary via /api/governance/summarize, then produces a 2-3 sentence plain-language translation + domain band (economic_param / treasury / code_upgrade / governance_meta / social_signal). 1-year cache — proposals are immutable.

## Output

A 2-3 sentence plain-language translation of the proposal's intent and likely impact, plus a domain band label from: economic_param, treasury, code_upgrade, governance_meta, or social_signal. Results are cached for 1 year since proposals are immutable.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "proposal_url"
     ],
     "properties": {
      "proposal_url": {
       "type": "string",
       "description": "Snapshot or Tally proposal URL"
      }
     }
    }
   },
   "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/hyperd-dao-governance-proposal-translator-0d6eb53c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.hyperd.ai](https://www.zero.xyz/host/api.hyperd.ai/llms.txt)
