AI/agentic copilot exposure lookup for OT/ICS vendors
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.
200000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-04
updated
Provider
ot-intel-api.onrender.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x1888192FAc6a69e4cd7d078eC4bCf6F24f7C767B",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "200000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"vendor": "Siemens"
},
"type": "http"
},
"output": {
"example": {
"access": "Honeywell Experion Process Knowledge System (DCS); continuous operational data across the facility. Explicitly makes 'recommendations and automated decisions' to resolve anomalies.",
"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"
}
],
"confidence": "moderate — proof-of-concept, not yet generally available",
"data_sources": [
"MITRE ATLAS (atlas.mitre.org)",
"Vendor public disclosures"
],
"deployment_status": "Live proof-of-concept at Borouge International's Ruwais facility (Abu Dhabi); commercial availability not yet general.",
"exposure_level": "agentic",
"product": "Experion Cognition (AI-enabled control system platform)",
"source": "Honeywell press release; corroborated by ARC Advisory Group, Control Engineering, and 6+ other independent trade outlets",
"vendor": "Honeywell"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"vendor": {
"description": "OT/ICS vendor name e.g. Siemens, Schneider Electric, Rockwell Automation, ABB, Emerson, Honeywell, Yokogawa, GE Vernova, Omron, Mitsubishi Electric",
"type": "string"
}
},
"required": [
"vendor"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://ot-intel-api.onrender.com/ot/ai-exposure" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://ot-intel-api.onrender.com/ot/ai-exposure");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://ot-intel-api.onrender.com/ot/ai-exposure")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/8947.json, and this resource appears in /discovery/resources and /discovery/search.