# Snapshot Governance Space Info

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

Fetches a Snapshot governance space's full configuration including voting rules, strategies, admins, quorum, proposal counts, and proposal status breakdown.

## Facts

- Endpoint: GET https://payai.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-info-cd6276c2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rhKOa8MVfVBdV-T-QJFFT

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-info-cd6276c2
```

Example prompt: What are the voting rules and current proposal activity for the Uniswap governance space on Snapshot — things like quorum, voting period, strategies, and how many proposals are active vs closed?

## When to prefer this

Choose this endpoint when an agent needs to understand a DAO's governance rules before voting, drafting a proposal, or auditing governance health. It is ideal for protocol-agnostic governance research since it normalizes Snapshot space configs across any DAO using the platform. Prefer over scraping snapshot.org directly or building custom GraphQL queries against the Snapshot API.

## Known failure modes

- Unknown or misspelled space ID returns an error or empty result
- Private or restricted Snapshot spaces may not return full config
- Snapshot API downtime causes request failure
- Alias not recognized — must use exact space-id (e.g. uniswapgovernance.eth) or a supported protocol alias

## 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

Returns the Snapshot space's full configuration object including: display name, description, network, token symbol, voting strategies, list of admins and moderators, voting delay (blocks/time), voting period duration, quorum threshold, default voting type, total proposal count, follower count, and a breakdown 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-info-cd6276c2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from payai.agentstools.dev](https://www.zero.xyz/host/payai.agentstools.dev/llms.txt)
