# RadhikaChain Chain Health Check

> RadhikaChain Chain Health Check is a paid API for AI agents from x402.radhikatmosphere.com, paid per call via x402, $0.5/call, status unknown (last checked 2026-09-13).

Returns a health status snapshot of the RadhikaChain network, including PoI/PoK consensus state, holder count, and PRANA supply pipeline telemetry.

## Facts

- Endpoint: GET https://x402.radhikatmosphere.com/chain/health
- Price: $0.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/radhikachain-chain-health-check-3d4cd16c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7GlAbrCoiVGYYMHhr25SK

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 radhikachain-chain-health-check-3d4cd16c
```

Example prompt: Can you pull the current health status of RadhikaChain — I want to know the consensus state, how many holders there are, and whether the PRANA supply pipeline is running correctly?

## When to prefer this

Choose this endpoint when you need a quick, cheap ($0.033 USDC) no-account health snapshot of RadhikaChain consensus and pipeline state, especially when integrating PoI/PoK telemetry into an agent monitoring loop or verifying chain state before downstream operations.

## Known failure modes

- Payment not included or incorrect USDC amount on Base (eip155:8453) — returns 402 Payment Required
- PoI engine at 127.0.0.1:5000 unreachable — health data may be stale or absent
- Network downtime on radhikatmosphere.com — connection timeout
- Malformed x402 v2 payment header — authentication failure

## How this service works

Telemetria de cadena, inteligencia de defensa y computo verificable (Halo2, Nova, Plonky3). Pago por peticion en USDC nativo en Base (eip155:8453) mediante x402 v2 scheme exact; sin cuenta ni suscripcion. Catalogo canonico: GET /.well-known/x402.

## Output

A JSON object containing: current holder count, consensus details for PRANA (PoI off-chain, DharmaGate-signed) and RADHA (PoK L1, verified against node), number of PoI events, the PRANA supply source URL, and a note confirming supply is read from the PoI engine rather than recalculated locally.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "body": {
     "type": "object",
     "additionalProperties": true
    },
    "queryParams": {
     "type": "object",
     "additionalProperties": true
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "example": {
     "type": "object",
     "additionalProperties": true
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "nota": "el supply se LEE del motor PoI, no se recalcula aqui",
  "flujo": "sensor XDP -> dharma-trace -> PoI /poi/submit -> PRANA",
  "holders": 16,
  "consenso": {
   "prana": "PoI (off-chain, DharmaGate-signed)",
   "radha": "PoK (L1) — verificado contra el nodo, no reimplementado"
  },
  "eventos_poi": 0,
  "fuente_prana": "http://127.0.0.1:5000"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/radhikachain-chain-health-check-3d4cd16c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.radhikatmosphere.com](https://www.zero.xyz/host/x402.radhikatmosphere.com/llms.txt)
