# RadhikaChain CrowdSec Threat Intelligence Feed

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

Returns real-time network threat intelligence from a CrowdSec-integrated eBPF/XDP sensor, including per-IP port scan data, TCP flags, OS fingerprints, and classification labels suitable for firewall actioning.

## Facts

- Endpoint: GET https://x402.radhikatmosphere.com/amenazas/crowdsec
- Price: $3.0888/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/radhikachain-crowdsec-threat-intelligence-feed-76c1efbf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WzTxtFuruMDpa7fQCRhZl

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-crowdsec-threat-intelligence-feed-76c1efbf
```

Example prompt: Pull the latest CrowdSec threat feed from RadhikaChain and show me which IPs are actively port-scanning right now, including their TCP flags and probable OS so I can update my firewall rules.

## When to prefer this

Choose this endpoint when you need granular, per-IP threat intelligence with TCP flag and OS fingerprint detail that can be directly actioned in a firewall — rather than aggregated block counts from traditional iptables-based feeds. Ideal for automated firewall rule generation, SOC enrichment pipelines, or real-time threat monitoring without requiring a subscription account.

## Known failure modes

- 402 Payment Required if x402 USDC payment on Base is missing or invalid
- Empty threat array if no threats are currently recorded by the sensor
- Stale data if the eBPF sensor feed has not updated recently
- Network timeout if the RadhikaChain host is unreachable
- Malformed response if the upstream CrowdSec integration is degraded

## 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 an array of threat entries, each with the attacker IP, TTL, list of probed ports, TCP flag values, probable OS, first/last seen timestamps in microseconds, probe count, and threat classification (e.g. 'port sweep', 'persistent probe'). Also includes aggregate stats: total distinct IPs observed and total event count. Data originates from an eBPF/XDP NIC sensor rather than iptables counters, providing richer per-packet detail.

## 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-crowdsec-threat-intelligence-feed-76c1efbf/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)
