# Cosmos Chain Info API

> Cosmos Chain Info API is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Returns current network stats for any Cosmos chain including block height, block time, staking supply, bonded tokens, bonded ratio, validator count, denom count, and chain ID.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/cosmos-chain-info
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/proxy-suverse-io-80eb3f6e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Lmm4M7luka5xj_uaAX-Ce

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-80eb3f6e -d '<json body>'
```

Example prompt: What are the current staking stats for the Cosmos Hub chain — I need the bonded ratio, active validator count, latest block height, and average block time.

## When to prefer this

Use this endpoint when you need real-time Cosmos ecosystem network health data — especially staking economics (bonded ratio, supply), validator set size, or block production metrics — for any IBC-compatible Cosmos chain. Prefer over manual RPC queries when you want normalized, pre-aggregated stats across multiple chains.

## Known failure modes

- Unknown or unsupported chain identifier returns error
- Chain temporarily offline or syncing may return stale data
- Invalid request body format returns 400 error
- Payment failure (insufficient USDC balance) returns 402
- Upstream node timeout may return 503

## How this service works

Cosmos chain info for Hub, Noble, Osmosis, Juno, Stride and any Cosmos SDK chain. Current block height, latest block time, avg block time, total staking supply, bonded tokens, bonded ratio, active validator count, denom count, chain ID. AI agent Cosmos monitor, IBC ecosystem API.

## Output

Returns a structured JSON object with current network info for the specified Cosmos chain: block height, latest block time, sampled average block time, total staking supply, bonded tokens, bonded ratio (percentage staked), active validator count, denom count, and chain ID.

## 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-80eb3f6e/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)
