# x402-defi-intel Governance Search

> x402-defi-intel Governance Search is a paid API for AI agents from cryptodefidataintel-production.up.railway.app, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-13).

Search and retrieve governance proposals for a given DeFi protocol's Snapshot space, returning active/closed proposals with AI-generated insights.

## Facts

- Endpoint: GET https://cryptodefidataintel-production.up.railway.app/api/governance-search
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-defi-intel-governance-search-b4b2edd2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_GRF_gxyF6vPAntc-Ucs3M

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 x402-defi-intel-governance-search-b4b2edd2
```

Example prompt: Can you check if there are any active governance proposals right now in the aave.eth Snapshot space? Show me up to 5 results.

## When to prefer this

Use this endpoint when an AI agent needs to monitor or report on DAO/DeFi governance activity for a specific protocol's Snapshot space, especially when you need structured proposal data with AI-generated summaries and confidence signals rather than raw Snapshot API output. Ideal for governance-aware agents that need to alert users to active votes or summarize recent decisions.

## Known failure modes

- Invalid or non-existent Snapshot space returns empty data array
- Missing required 'space' query parameter returns a 400 error
- Payment not provided or insufficient returns 402 Payment Required
- Snapshot API downtime may reduce confidence score or return stale data
- Invalid 'state' filter value may return no results or an error

## How this service works

Crypto-agent toolkit: cross-chain DeFi intelligence + execution helpers + retrieval for agents. 16 endpoints: funding, open interest, long/short, token-safety, yield, prices, gas, tx-simulate, approval-check, bridge-quote, governance-search, lending, liquidations, protocol-search, swap-quote, token-resolve. Pay-per-call via x402.

## Output

Returns an array of governance proposals with their IDs, titles, current state, and direct Snapshot links, plus a machine-readable signal string (e.g. 'active_proposals:1'), a human-readable AI insight summarizing the results, the data sources used (e.g. Snapshot), and a confidence score between 0 and 1.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "space"
     ],
     "properties": {
      "limit": {
       "type": "integer"
      },
      "space": {
       "type": "string"
      },
      "state": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": [
   {
    "id": "0x...",
    "link": "https://snapshot.org/#/aave.eth/proposal/0x...",
    "state": "active",
    "title": "Onboard new collateral"
   }
  ],
  "signal": "active_proposals:1",
  "insight": "1 ACTIVE proposal in aave.eth.",
  "sources": [
   "snapshot"
  ],
  "confidence": 0.85
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-defi-intel-governance-search-b4b2edd2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from cryptodefidataintel-production.up.railway.app](https://www.zero.xyz/host/cryptodefidataintel-production.up.railway.app/llms.txt)
