# ChainRay Governance Data

> ChainRay Governance Data is a paid API for AI agents from chainray.online, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Fetches on-chain governance data for a specified blockchain network

## Facts

- Endpoint: GET https://chainray.online/governance
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/chainray-online-69b1872e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_imKEMDOReYgyLp8I_HbS9

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 chainray-online-69b1872e
```

Example prompt: Can you pull the latest on-chain governance data for the Base blockchain from ChainRay so I can see what proposals and votes are currently active?

## When to prefer this

Use this endpoint when you need on-chain governance data (proposals, votes, DAO activity) for a specific blockchain like Base, Ethereum, or Polygon. Prefer this over general blockchain explorers when you specifically want governance-focused structured data without building custom queries.

## Known failure modes

- Unsupported or invalid chain identifier returns an error or empty result
- Network unavailability results in a timeout or 5xx error
- Payment failure (x402) results in 402 Payment Required if USDC not provided
- Missing required query parameter may return default chain data or an error

## How this service works

The most complete blockchain data and intelligence service for AI agents. 93 endpoints across 46 chains, from gas fees to DeFi analytics, with real-time streams, intent routing, and verifiable proofs. Pay-per-request via x402.

## Output

Returns on-chain governance data for the specified blockchain, including active proposals, voting activity, and governance metrics relevant to that chain's protocols.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "chain": "ethereum"
  }
 }
}
```

## 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",
     "properties": {
      "chain": {
       "type": "string",
       "description": "Blockchain network (e.g., base, ethereum, polygon)"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/chainray-online-69b1872e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from chainray.online](https://www.zero.xyz/host/chainray.online/llms.txt)
