# RadhikaChain Unified State Endpoint

> RadhikaChain Unified State Endpoint is a paid API for AI agents from x402.radhikatmosphere.com, paid per call via x402, $2.0592/call, status unknown (last checked 2026-09-15).

Returns unified on-chain telemetry for RadhikaChain including token holder counts, PoI/PoK consensus state, and PRANA/RADHA supply pipeline status

## Facts

- Endpoint: GET https://x402.radhikatmosphere.com/estado/unificado
- Price: $2.0592/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/radhikachain-unified-state-endpoint-f92fe703
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NFYKjClq_sjPtUG-kKtUq

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-endpoint-f92fe703
```

Example prompt: Pull the latest unified chain state from RadhikaChain — I want to know the current holder count, whether PoI and PoK consensus is healthy, and what the PRANA pipeline flow looks like right now.

## When to prefer this

Use this endpoint when you need a single unified snapshot of RadhikaChain's current state — holder counts, consensus health, and pipeline status — without running separate queries to PoI, PoK, or supply engines. Prefer this over building custom queries when you want pay-per-call access with no account setup, and when you specifically need DharmaGate-signed PoI consensus or L1 PoK verification data from RadhikaChain's native telemetry stack.

## Known failure modes

- 402 Payment Required if x402 USDC payment on Base is missing or insufficient
- Stale data if PoI engine is offline or unreachable at its local source address
- Empty or zero PoI event count if no recent events have been submitted
- PRANA source pointing to localhost may indicate a misconfigured or internal-only deployment
- Network timeout if the RadhikaChain node is temporarily unavailable

## 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 containing: a note clarifying that supply is read from the PoI engine (not recalculated), the data flow description (XDP sensor → dharma-trace → PoI /poi/submit → PRANA), current holder count (integer), consensus state for PRANA (PoI off-chain, DharmaGate-signed) and RADHA (PoK L1 verified), count of PoI events, and the PRANA source URL.

## 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-endpoint-f92fe703/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)
