# RadhikaChain Live Threat Intelligence Feed

> RadhikaChain Live Threat Intelligence Feed is a paid API for AI agents from x402.radhikatmosphere.com, paid per call via x402, $4.29/call, status unknown (last checked 2026-09-15).

Returns real-time live network threat data including active attacker IPs, scanned ports, TCP flags, TTL, and threat classification from an eBPF/XDP sensor

## Facts

- Endpoint: GET https://x402.radhikatmosphere.com/amenazas/vivas
- Price: $4.29/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/radhikachain-live-threat-intelligence-feed-59e4aa3d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ww5t_uKQpLXaFDaIp4Ydb

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-live-threat-intelligence-feed-59e4aa3d
```

Example prompt: Pull the live threat feed right now and show me which IPs are actively scanning ports, including their TCP flags and what OS they look like — I want to copy the worst offenders straight into my firewall block list.

## When to prefer this

Prefer this endpoint when you need per-IP, per-port, per-flag granular threat data suitable for direct firewall ingestion — not just aggregate counts. It is especially valuable when you need OS fingerprinting and precise timestamps for active threats, and when you want sensor-level eBPF/XDP fidelity rather than aggregated log data. Use it for real-time threat blocking automation, SOC dashboards, or incident triage where actional IP-level detail matters.

## Known failure modes

- Payment not included or invalid x402 USDC payment on Base — returns 402 Payment Required
- Sensor data temporarily unavailable — may return 503 or empty threat list
- Malformed request headers — returns 400 Bad Request
- Network timeout if sensor pipeline is under load

## 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 a list of active threat entries, each with attacker IP, TTL, scanned ports array, TCP flag values, estimated OS, first-seen and last-seen microsecond timestamps, probe count, distinct port count, and threat classification (e.g. 'port sweep', 'persistent probe'). Also includes aggregate statistics: total distinct IPs seen and total event count. Data sourced from an eBPF/XDP sensor on the NIC, not aggregated iptables counters.

## 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": {
  "fuente": "sensor XDP en la NIC (eBPF), no contadores de iptables",
  "amenazas": [
   {
    "ip": "8.103.58.198",
    "ttl": 45,
    "puertos": [
     22,
     8402,
     8151,
     8332,
     5000,
     3000,
     8788,
     8413,
     9103
    ],
    "sondeos": 665179,
    "flags_tcp": [
     16,
     2,
     24,
     17,
     4,
     20,
     25
    ],
    "so_probable": "linux/unix",
    "primer_visto": 1512360412807002,
    "ultimo_visto": 2360929756865408,
    "clasificacion": "barrido de puertos",
    "puertos_distintos": 9
   },
   {
    "ip": "3.38.236.54",
    "ttl": 47,
    "puertos": [
     3000
    ],
    "sondeos": 10156,
    "flags_tcp": [
     2,
     4,
     16,
     24,
     17
    ],
    "so_probable": "linux/unix",
    "primer_visto": 2078920099453734,
    "ultimo_visto": 2186077586730334,
    "clasificacion": "sondeo insistente",
    "puertos_distintos": 1
   }
  ],
  "diferencia": "cada entrada trae IP, puertos, flags TCP y TTL: accionable en un firewall. Los contadores agregados no.",
  "ips_distintas": 1819,
  "eventos_totales": 811757
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/radhikachain-live-threat-intelligence-feed-59e4aa3d/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)
