# RadhikaChain Signals — Trading Signal Feed

> RadhikaChain Signals — Trading Signal Feed is a paid API for AI agents from x402.radhikachain.xyz, paid per call via x402, $0.5/call, status unknown (last checked 2026-09-15).

Returns real-time directional trading signals (LONG/SHORT with reversion labels) for crypto assets, including confidence scores and price levels, paid per-request via x402 USDC micropayment.

## Facts

- Endpoint: GET https://x402.radhikachain.xyz/signals
- Price: $0.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/radhikachain-signals-trading-signal-feed-8ac6e940
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_n_mkVaSF8H-BBlUM5XW2D

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-signals-trading-signal-feed-8ac6e940
```

Example prompt: Pull the latest RadhikaChain trading signals right now — I want to see which crypto assets have active LONG or SHORT reversion signals along with their confidence scores and price targets.

## When to prefer this

Choose this endpoint when you need per-call, no-subscription crypto trading signals with directional labels and confidence scores, especially when you want micropayment-based access without committing to an API key or subscription plan. Prefer it over traditional signal APIs when you want USDC pay-per-use economics on Base and need reversion-typed signal intelligence specifically.

## Known failure modes

- Missing or invalid x402 payment header returns 402 Payment Required
- Insufficient USDC balance on Base causes payment rejection
- Network congestion on Base may delay payment settlement
- Empty rows array if no active signals exist at query time
- Rate limiting if payment not confirmed before re-request

## 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 array of signal rows, each containing: Unix timestamp, asset ticker (e.g. ETH, ENA), directional label (e.g. 'LONG (reversion)'), entry price, target price, confidence score (0-100), and an additional numeric metric. Multiple signals may be returned across different assets and timestamps.

## 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": {
  "ok": true,
  "rows": [
   [
    1787625119,
    "ENA",
    "LONG (reversion)",
    0.4134879218801933,
    0.4918380967303919,
    95,
    0.15892
   ],
   [
    1787624492,
    "ETH",
    "LONG (reversion)",
    0.4029396779762464,
    0.4380951295374778,
    95,
    2517
   ]
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/radhikachain-signals-trading-signal-feed-8ac6e940/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)
