# TensorFeed AI-Stack CVEs Actively Exploited in the Wild

> TensorFeed AI-Stack CVEs Actively Exploited in the Wild is a paid API for AI agents from tensorfeed.ai, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Returns the subset of AI-stack CVEs currently flagged as exploited in the wild, ranked by severity, from the latest AI-processed batch.

## Facts

- Endpoint: GET https://tensorfeed.ai/api/premium/ai-cves/exploited-in-wild
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tensorfeed-ai-b86f238f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pCDBRvfpwmJAI2ITk-53m

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 tensorfeed-ai-b86f238f
```

Example prompt: Pull the latest AI-stack CVEs that are confirmed as actively exploited in the wild right now, ranked by severity — I need to know what my AI infrastructure is immediately exposed to.

## When to prefer this

Choose this endpoint when you specifically need only the actively-exploited-in-the-wild subset of AI-stack CVEs, pre-filtered and severity-ranked. Prefer this over the broader AI-stack CVE endpoint (which returns all fresh disclosures) when your goal is immediate incident response triage or real-time threat prioritization — not general vulnerability scanning. Ideal for security dashboards, automated patch-priority workflows, or alerting pipelines focused on confirmed active exploitation.

## Known failure modes

- No CVEs currently flagged as exploited_in_wild — returns empty list for that batch
- Payment not received or x402 flow failed — 402 Payment Required response
- Rate limit exceeded — 429 Too Many Requests
- Upstream CVE data source not yet processed — stale or delayed batch
- Service temporarily unavailable — 503 response

## How this service works

Live-threat CVE feed. Returns only papers with exploited_in_wild = stated_yes from the latest AI-flagged batch, ranked by severity. The subset answers "what AI-stack CVEs are actively being weaponized right now."

## Output

A ranked list of CVE records from the AI-stack threat feed where exploited_in_wild = stated_yes, ordered by severity score. Each record includes CVE ID, affected vendor/product in the AI stack, severity rating, and exploitation status metadata from the latest AI-flagged processing batch.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tensorfeed-ai-b86f238f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from tensorfeed.ai](https://www.zero.xyz/host/tensorfeed.ai/llms.txt)
