# RadhikaChain Confirmed Attacks Feed

> RadhikaChain Confirmed Attacks Feed is a paid API for AI agents from x402.radhikachain.xyz, paid per call via x402, $3.432/call, status unknown (last checked 2026-09-14).

Returns a list of confirmed cyberattacks with IP, timestamp, attack type, witness nodes, prana score, and packet count, verified across a distributed sensor swarm.

## Facts

- Endpoint: GET https://x402.radhikachain.xyz/attacks/confirmed
- Price: $3.432/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/radhikachain-confirmed-attacks-feed-9057bf50
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WAhqcISlwCWUruPCE2s26

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-confirmed-attacks-feed-9057bf50
```

Example prompt: Pull the latest confirmed attacks from RadhikaChain's threat feed — I want to see the attacker IPs, attack types, prana scores, and which witness nodes verified each one.

## When to prefer this

Use this endpoint when you need a verified, multi-witness confirmed attack list rather than raw unconfirmed threat signals. The prana scoring and swarm-attested witness model makes it suitable for high-confidence blocklisting or alerting workflows. Prefer this over generic threat feeds when you need geographically distributed attestation and verifiable confirmation rather than single-source heuristics.

## Known failure modes

- Payment not included or invalid x402 USDC payment on Base (eip155:8453) — returns 402 Payment Required
- No confirmed attacks in the current window — returns empty confirmados array
- Service temporarily unavailable — 503 or timeout
- Malformed request headers — 400 Bad 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

Returns a JSON object with a list of confirmed attack records, each containing: attacker IP, Unix timestamp, attack type (e.g. ssh_bruteforce), prana score (severity/confidence float), packet count, list of witness node names, witness count, and a geographic distribution breakdown of the prana score across witnessing nodes.

## 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": {
  "confirmados": [
   {
    "ip": "45.198.224.26",
    "ts": 1786204349,
    "tipo": "ssh_bruteforce",
    "prana": 3.039,
    "reparto": {
     "tokio": 0.7013,
     "amsterdam": 1.6364,
     "frankfurt": 0.7013
    },
    "paquetes": 13,
    "testigos": [
     "amsterdam",
     "frankfurt",
     "tokio"
    ],
    "n_testigos": 3
   },
   {
    "ip": "187.190.159.254",
    "ts": 1786204349,
    "tipo": "ssh_bruteforce",
    "prana": 4.048,
    "reparto": {
     "tokio": 1.012,
     "toronto": 1.012,
     "amsterdam": 1.012,
     "frankfurt": 1.012
    },
    "paquetes": 12,
    "testigos": [
     "amsterdam",
     "frankfurt",
     "tokio",
     "toronto"
    ],
    "n_testigos": 4
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/radhikachain-confirmed-attacks-feed-9057bf50/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)
