# OIX CVEWatch Industrial — ICS Vulnerability Decision Report

> OIX CVEWatch Industrial — ICS Vulnerability Decision Report is a paid API for AI agents from oix-autonomous-economy.fly.dev, paid per call via x402, $0.1/call, status down (last checked 2026-09-15).

Returns a scored, source-backed vulnerability decision report for industrial control systems (ICS/OT), drawing from NVD and other primary sources, with cryptographic proof of the report digest.

## Facts

- Endpoint: GET https://oix-autonomous-economy.fly.dev/api/x402/portfolio/cvewatch-industrial
- Price: $0.1/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/oix-cvewatch-industrial-ics-vulnerability-decision-report-a054c6f9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_buL7i5QnSa0Tny1uiy2vU

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 oix-cvewatch-industrial-ics-vulnerability-decision-report-a054c6f9
```

Example prompt: Pull the latest CVEWatch Industrial report for ICS vulnerabilities — show me up to 10 observations with an OIX evidence score of at least 70, focused on SCADA systems.

## When to prefer this

Choose this endpoint when you need a machine-verifiable, scored ICS/OT vulnerability intelligence report with cryptographic proof of provenance — particularly for OT security operators who need to act on CVE data with evidence-backed confidence scores and audit trails. Prefer this over raw NVD API calls when you need pre-scored, filtered observations specific to industrial control systems, or when a settlement receipt and report digest are required for compliance or autonomous agent workflows.

## Known failure modes

- Payment not provided or rejected — 402 response requiring x402 USDC payment on Base mainnet
- Invalid minScore value outside 0–100 range — validation error
- Limit exceeds maximum of 25 — request rejected
- Query term too long (over 120 characters) — rejected by schema validation
- No matching observations for the given query/score filter — empty observations array returned
- Upstream NVD source unavailable — may return stale or partial data

## How this service works

Package any earning logic as an autonomous asset. OIX provides identity, runtime, capital policy, ownership, proof, settlement, and exchange infrastructure.

## Output

A JSON object containing: asset metadata (name, slug, market), a cryptographic proof bundle (SHA-256 report and source digests), product offer details (price, settlement chain), and a decision object listing scored CVE observations (URL, score, title, evidence) along with total monitored records and returned observation count. Protocol is oix.machine-report/v1.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "q": {
       "type": "string",
       "maxLength": 120,
       "description": "Optional term matched against the current source-backed observations."
      },
      "limit": {
       "type": "integer",
       "default": 25,
       "maximum": 25,
       "minimum": 1,
       "description": "Maximum observations returned."
      },
      "minScore": {
       "type": "integer",
       "default": 0,
       "maximum": 100,
       "minimum": 0,
       "description": "Minimum OIX evidence score."
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "asset": {
   "name": "CVEWatch Industrial",
   "slug": "cvewatch-industrial",
   "market": "Industrial control systems"
  },
  "proof": {
   "reportDigest": "sha256:…",
   "sourceDigest": "sha256:…"
  },
  "product": {
   "offer": "Stack-specific vulnerability decision report",
   "price": "0.1 USDC",
   "settlement": "x402 · Base mainnet"
  },
  "decision": {
   "buyer": "OT security operators",
   "observations": [
    {
     "url": "https://nvd.nist.gov/developers/vulnerabilities",
     "score": 90,
     "title": "Primary-source market signal",
     "evidence": {}
    }
   ],
   "monitoredRecords": 40,
   "returnedObservations": 25
  },
  "protocol": "oix.machine-report/v1"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/oix-cvewatch-industrial-ics-vulnerability-decision-report-a054c6f9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from oix-autonomous-economy.fly.dev](https://www.zero.xyz/host/oix-autonomous-economy.fly.dev/llms.txt)
