# MAKO DAO Governance Weekly Brief

> MAKO DAO Governance Weekly Brief is a paid API for AI agents from mako.pollinateresearch.com, paid per call via x402, $1/call, status unknown (last checked 2026-09-14).

Generates a neutral weekly brief of DAO governance proposals from Snapshot and Tally, returning source-linked Markdown and structured proposal metadata

## Facts

- Endpoint: POST https://mako.pollinateresearch.com/api/governance/weekly-brief
- Price: $1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/mako-pollinateresearch-com-a121b082
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_AXwmz_2IbbUhBC9-NTWmF

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 mako-pollinateresearch-com-a121b082 -d '<json body>'
```

Example prompt: Give me this week's DAO governance brief — pull active and recent proposals from Snapshot and Tally and return a neutral Markdown summary with links and structured metadata for each proposal.

## When to prefer this

Choose this endpoint when an agent needs a neutral, aggregated, human-readable governance brief covering both Snapshot and Tally in a single call, with structured metadata and source links. Prefer over building a custom aggregator when the agent needs ready-to-display Markdown output and does not need to cast votes or interact with smart contracts.

## Known failure modes

- No active proposals found for the requested period — returns empty brief
- Upstream Snapshot or Tally API unavailability — partial or failed response
- Invalid or unrecognized DAO identifier — returns error or empty results
- Payment not settled via x402 — request rejected before processing
- Malformed request body — 400-level error with schema validation message

## How this service works

Generate a neutral DAO governance weekly brief from Snapshot and Tally proposal sources. Returns source-linked Markdown and structured proposal metadata. Informational only; does not vote, sign transactions, custody funds, or provide investment/legal/tax/compliance advice.

## Output

Returns a source-linked Markdown document containing a neutral weekly brief of DAO governance proposals, plus structured metadata per proposal (title, source, status, voting deadlines, links). Does not include votes, transaction signing, or financial advice.

## Example request

```json
{
 "limit": 3,
 "timeout": 120,
 "skip_model": false,
 "client_name": "QA Test Agent",
 "num_predict": 700,
 "max_summaries": 3,
 "max_body_chars": 2500,
 "snapshot_spaces": [
  "uniswap.eth"
 ],
 "snapshot_states": [
  "active"
 ],
 "write_artifacts": false,
 "tally_governor_ids": [],
 "tally_organization_ids": [],
 "snapshot_order_direction": "desc"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "limit": {
   "type": "integer",
   "maximum": 25,
   "minimum": 1
  },
  "skip_model": {
   "type": "boolean",
   "description": "Use deterministic source excerpts instead of local model summaries."
  },
  "client_name": {
   "type": "string",
   "description": "Display name for the brief."
  },
  "max_summaries": {
   "type": "integer",
   "maximum": 10,
   "minimum": 1
  },
  "snapshot_spaces": {
   "type": "array",
   "items": {
    "type": "string"
   },
   "description": "Snapshot spaces to fetch."
  },
  "snapshot_states": {
   "type": "array",
   "items": {
    "type": "string"
   },
   "description": "Snapshot states such as active, pending, or closed."
  },
  "snapshot_order_direction": {
   "enum": [
    "asc",
    "desc"
   ],
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/mako-pollinateresearch-com-a121b082/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from mako.pollinateresearch.com](https://www.zero.xyz/host/mako.pollinateresearch.com/llms.txt)
