# OT/ICS Vendor AI Copilot Exposure Lookup

> OT/ICS Vendor AI Copilot Exposure Lookup is a paid API for AI agents from ot-intel-api.onrender.com, paid per call via x402, $0.2/call, status unknown (last checked 2026-09-14).

Returns a hand-verified mapping of an OT/ICS vendor's AI/agentic copilot capabilities, autonomy level, access model, and applicable MITRE ATLAS attack techniques.

## Facts

- Endpoint: GET https://ot-intel-api.onrender.com/ot/ai-exposure
- Price: $0.2/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ot-ics-vendor-ai-copilot-exposure-lookup-ebd74d18
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_oBeGXPEgG0pCXfyjIJ-Ua

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 ot-ics-vendor-ai-copilot-exposure-lookup-ebd74d18
```

Example prompt: What AI copilot does Siemens expose in its OT/ICS products, is it advisory or agentic, and which MITRE ATLAS techniques apply to it?

## When to prefer this

Use this endpoint when you need a fast, deterministic, hand-verified lookup of AI/agentic copilot exposure for a specific major OT/ICS vendor, especially when you need MITRE ATLAS technique mappings confirmed against the live matrix. Prefer this over LLM-generated answers when accuracy and auditability of ATLAS IDs matter, or when assessing agentic autonomy risk for ICS security posture reviews.

## Known failure modes

- Unsupported vendor name returns no results or an error — only the listed 10 vendors are covered
- Misspelled or abbreviated vendor names may not match (e.g. 'GE' instead of 'GE Vernova')
- Service unavailability on Render free tier may cause cold-start delays or 503 errors
- Vendor has no documented AI copilot — may return null or empty exposure record

## How this service works

AI/agentic copilot exposure lookup for OT/ICS vendors. Pass vendor (Siemens, Schneider Electric, Rockwell Automation, ABB, Emerson, Honeywell, Yokogawa, GE Vernova, Omron, Mitsubishi Electric). Returns the vendor's documented AI/agentic copilot, autonomy level (advisory vs agentic — the key risk differentiator), access, and applicable MITRE ATLAS techniques. Hand-verified mapping, ATLAS IDs confirmed against the live atlas.mitre.org matrix. Deterministic, no LLM in the lookup path.

## Output

Returns the vendor's documented AI/agentic copilot name, its autonomy level classification (advisory vs agentic), access model details, and a list of confirmed MITRE ATLAS technique IDs and names applicable to that vendor's AI exposure — all from a hand-verified, deterministic mapping.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "vendor"
     ],
     "properties": {
      "vendor": {
       "type": "string",
       "description": "OT/ICS vendor name e.g. Siemens, Schneider Electric, Rockwell Automation, ABB, Emerson, Honeywell, Yokogawa, GE Vernova, Omron, Mitsubishi Electric"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "access": "Honeywell Experion Process Knowledge System (DCS); continuous operational data across the facility. Explicitly makes 'recommendations and automated decisions' to resolve anomalies.",
  "source": "Honeywell press release; corroborated by ARC Advisory Group, Control Engineering, and 6+ other independent trade outlets",
  "vendor": "Honeywell",
  "product": "Experion Cognition (AI-enabled control system platform)",
  "confidence": "moderate — proof-of-concept, not yet generally available",
  "data_sources": [
   "MITRE ATLAS (atlas.mitre.org)",
   "Vendor public disclosures"
  ],
  "atlas_mappings": [
   {
    "shared_risk": true,
    "technique_id": "AML.T0051",
    "technique_name": "LLM Prompt Injection"
   },
   {
    "rationale": "Agents hold automated decision-making authority in the control loop.",
    "shared_risk": false,
    "technique_id": "AML.T0053",
    "technique_name": "AI Agent Tool Invocation"
   },
   {
    "rationale": "Ongoing autonomous operation makes persistence via poisoned tool definitions materially higher-consequence.",
    "shared_risk": false,
    "technique_id": "AML.T0110",
    "technique_name": "AI Agent Tool Poisoning"
   }
  ],
  "exposure_level": "agentic",
  "deployment_status": "Live proof-of-concept at Borouge International's Ruwais facility (Abu Dhabi); commercial availability not yet general."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ot-ics-vendor-ai-copilot-exposure-lookup-ebd74d18/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from ot-intel-api.onrender.com](https://www.zero.xyz/host/ot-intel-api.onrender.com/llms.txt)
