# Cosmos Validator Statistics API

> Cosmos Validator Statistics API is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.050000/call, status unknown (last checked 2026-09-13).

Returns comprehensive validator statistics for any Cosmos chain, including operator address, moniker, bonded tokens, commission rates, jailed status, and slashing parameters.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/cosmos-validator-stats
- Price: $0.050000/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/proxy-suverse-io-106dbd57
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_lXOsWFpUzfwNWMF4Ii9-J

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 proxy-suverse-io-106dbd57 -d '<json body>'
```

Example prompt: Look up the current validator stats for cosmosvaloper1clpqr4nrk4khgkxj78fcwwh6dl3uw4epsluffn on the Cosmos Hub — I want to see their commission rate, bonded tokens, jailed status, and slashing window parameters before I delegate.

## When to prefer this

Use this endpoint when you need detailed, structured validator metadata for Cosmos ecosystem chains — especially for AI staking agents that need commission, slashing, and bonding data to rank or select validators, or for portfolio dashboards tracking delegation health across Cosmos chains. Prefer this over generic block explorers when you need machine-readable, consistently structured data suitable for programmatic decision-making.

## Known failure modes

- Invalid or unrecognized chain identifier returns an error or empty result
- Validator operator address not found on the specified chain returns a 404 or empty object
- Chain node timeout or RPC unavailability causes a service error
- Malformed operator address format results in a validation error
- Payment not included or insufficient USDC causes a 402 payment required response

## How this service works

Cosmos validator stats for any Cosmos SDK chain. Operator address, moniker, bonded tokens, delegator shares, commission rate + max + max change, jailed status, bonding status, min self delegation, slashing window. AI agent staking bot, validator selection API, Cosmos delegation tool.

## Output

Returns a structured object containing the validator's operator address, human-readable moniker, total bonded tokens, delegator shares, commission rate along with its max rate and max change rate, jailed boolean, bonding status, minimum self delegation amount, and slashing window parameters — all the data needed to evaluate validator quality and risk.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "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/proxy-suverse-io-106dbd57/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
