# SixPath Governance Proposals Lookup

> SixPath Governance Proposals Lookup is a paid API for AI agents from sixpath.vercel.app, paid per call via x402, $0.105319/call, status unknown (last checked 2026-09-14).

Fetches governance proposals from a specified Snapshot space, returning proposal details up to a configurable limit.

## Facts

- Endpoint: POST https://sixpath.vercel.app/api/governance
- Price: $0.105319/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sixpath-governance-proposals-lookup-bb15ba52
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MgmGfhdUot-xwhr-VxrZk

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 sixpath-governance-proposals-lookup-bb15ba52 -d '<json body>'
```

Example prompt: Can you pull the latest 10 governance proposals from the 'aave.eth' Snapshot space so I can see what votes are currently active?

## When to prefer this

Use this endpoint when you need to programmatically fetch governance proposals from a specific Snapshot space for a DAO or protocol, especially in pay-per-call contexts using the x402 protocol on Base chain. Prefer this over manual Snapshot UI browsing when integrating governance data into automated workflows or agent pipelines.

## Known failure modes

- Invalid or non-existent Snapshot space returns empty or error response
- Limit parameter too high may cause timeouts or truncated results
- Payment failure via x402 protocol results in 402 response and no data
- Snapshot API downstream outage causes unavailability
- Malformed request body returns validation error

## How this service works

All-in-one API hub: Social Media, Jobs, Finance, Crypto, and Tools. Pay-per-call with x402 protocol on Base chain.

## Output

Returns a JSON object containing the Snapshot space identifier and an array of proposal objects, each describing a governance proposal including its details, status, and voting information.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "limit": {
   "type": "integer",
   "description": "Max results"
  },
  "space": {
   "type": "string",
   "description": "Snapshot space"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "space": {
   "type": "string"
  },
  "proposals": {
   "type": "array",
   "items": {
    "type": "object"
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sixpath-governance-proposals-lookup-bb15ba52/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from sixpath.vercel.app](https://www.zero.xyz/host/sixpath.vercel.app/llms.txt)
