# Snapshot Governance Space Config & Proposal Summary

> Snapshot Governance Space Config & Proposal Summary is a paid API for AI agents from api.agentstools.dev, paid per call via x402, $0.008/call, status unknown (last checked 2026-09-15).

Returns a Snapshot governance space's full configuration and proposal activity breakdown so an agent can understand the voting rules, parameters, and current proposal state.

## Facts

- Endpoint: GET https://api.agentstools.dev/governance/space
- Price: $0.008/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/snapshot-governance-space-config-proposal-summary-8a8f06c0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_TyuwNuiP22p4LrQDZiuzX

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 snapshot-governance-space-config-proposal-summary-8a8f06c0
```

Example prompt: Can you pull up the full voting rules and proposal breakdown for the Uniswap governance space on Snapshot — I want to know the quorum, voting period, strategies used, and how many proposals are currently active vs closed?

## When to prefer this

Use this endpoint when an agent needs to understand the governance rules and current proposal activity of a Snapshot-based DAO before helping a user vote, delegate, or analyze governance participation. Prefer this over generic Snapshot GraphQL queries when you want a normalized, pre-structured summary without writing your own query.

## Known failure modes

- Unknown or misspelled space ID returns an error or empty result
- Private/restricted Snapshot spaces may return limited data
- Network timeout if Snapshot's GraphQL API is slow
- Invalid alias that doesn't resolve to a known space returns an error

## How this service works

A Snapshot space's config and context so an agent understands the voting RULES: name, about, network, token symbol, strategies, admins/moderators, voting delay/period/quorum/type, proposal and follower counts, and a breakdown of active/pending/closed proposals.

## Output

A structured object containing the Snapshot space's display name, about text, network, token symbol, voting strategies, list of admins and moderators, voting delay, voting period, quorum threshold, voting type, total proposal count, follower count, and a categorized count of active, pending, and closed proposals.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "space"
     ],
     "properties": {
      "space": {
       "type": "string",
       "description": "Snapshot space-id (e.g. uniswapgovernance.eth) or a known protocol alias (e.g. uniswap)"
      }
     }
    }
   },
   "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/snapshot-governance-space-config-proposal-summary-8a8f06c0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.agentstools.dev](https://www.zero.xyz/host/api.agentstools.dev/llms.txt)
