$1
per call · USD Coin on Base
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.
Endpoint
GET https://api.hyperd.ai/api/gov/translate3
Calls / 30d
1
Unique payers / 30d
Sep 1
Last called
exact
Payment scheme
Call this service
import { wrapFetchWithPayment } from "@x402/fetch";
import { privateKeyToAccount } from "viem/accounts";
const account = privateKeyToAccount(process.env.PRIVATE_KEY);
const fetchWithPay = wrapFetchWithPayment(fetch, account);
const res = await fetchWithPay("https://api.hyperd.ai/api/gov/translate", {
method: "GET",
});
const data = await res.json();curl -X GET \
"https://api.hyperd.ai/api/gov/translate?proposal_url=https%3A%2F%2Fsnapshot.org%2F%23%2Faave.eth%2Fproposal%2F0xabc" \
-H "X-PAYMENT: <signed x402 payment>"Example response
{
"cache": {
"status": "miss"
},
"coverage": {
"sub_calls_attempted": 1,
"sub_calls_failed": [],
"sub_calls_succeeded": 1
},
"methodology": {
"model": "claude-haiku-4-5-20251001",
"version": "synthesis-v1.0.0"
},
"verdict": {
"band": "economic_param",
"confidence": 0.85,
"summary": "Aave wants to take more fees on USDC borrows"
}
}Payment details
0x61b51131e1e44552de2f151ca59dac707d9cf1c6USD Coin · 0x833589fcd6edb6e08f4c7c32d4f71b54bda02913Is this your API?
Pin it to the top of Developer Tools and the homepage with a featured placement.
More from Hyperd & similar services
Hyperd · Yield Allocation
api.hyperd.ai
Composed yield allocation recommender. Fans out 3 parallel /api/yield calls at low/medium/high risk tiers for the same amount + duration, then returns a recommended portfolio split + 2-sentence rationale. Allowed bands: conservative / balanced / aggressive / bespoke. 6h Upstash cache bucketed by amount tier × duration × chain.
Hyperd · Wallet Threat Brief
api.hyperd.ai
Composed wallet threat brief. Fans out to wallet_risk, wallet_anomaly, privacy_mixer_risk, budget_guardian, and wallet_persona and returns a 2-3 sentence security verdict + band (clean / watch / elevated / critical). Replaces a manual 5-call security audit walk.
Hyperd · Wallet Thesis
api.hyperd.ai
Composed wallet behavioral thesis. Fans out to balance, wallet_persona, wallet_pnl, wallet_anomaly and returns a plain-language summary of the wallet's investing posture plus archetype (trader / hodler / yield_farmer / mev_bot / compromised / inactive).