# RadhikaChain Unified State Telemetry

> RadhikaChain Unified State Telemetry is a paid API for AI agents from x402.radhikachain.xyz, paid per call via x402, $2.0592/call, status unknown (last checked 2026-09-13).

Returns a unified chain-state snapshot including PRANA/RADHA token supply, PoI event counts, holder counts, and consensus source references for the RadhikaChain network.

## Facts

- Endpoint: GET https://x402.radhikachain.xyz/estado/unificado
- Price: $2.0592/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/radhikachain-unified-state-telemetry-d8bb6df6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LltWp-Xl73ADu4bPoTPeZ

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-unified-state-telemetry-d8bb6df6
```

Example prompt: Pull the latest unified state snapshot from RadhikaChain — I want to see the current holder count, PoI event tally, and which consensus method is active for PRANA and RADHA right now.

## When to prefer this

Use this endpoint when you need a single aggregated snapshot of RadhikaChain's live chain state — holder counts, PoI events, and consensus metadata — without reconstructing data yourself. Prefer it over individual sub-endpoints when you want a unified view across PRANA and RADHA in one call. Best suited for monitoring dashboards, agent health checks, or any workflow that needs to verify consensus methods and supply pipeline provenance on RadhikaChain.

## Known failure modes

- Payment not attached or invalid x402 USDC payment on Base (eip155:8453) returns 402 Payment Required
- Internal PoI motor or dharma-trace service unavailable may return 503 or incomplete data
- fuente_prana pointing to localhost (127.0.0.1:5000) may indicate the upstream supply source is internal and could be stale or unreachable in degraded states
- No query parameters accepted; malformed requests return standard HTTP errors

## 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

Returns a JSON object with: the number of current holders, PoI event count, the active consensus mechanisms for PRANA (PoI, off-chain DharmaGate-signed) and RADHA (PoK, L1-verified), the data flow pipeline description (sensor XDP -> dharma-trace -> PoI -> PRANA), the source URL for PRANA supply data, and a note clarifying that supply is read from the PoI motor 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-unified-state-telemetry-d8bb6df6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.radhikachain.xyz](https://www.zero.xyz/host/x402.radhikachain.xyz/llms.txt)
