OT asset risk verdict
OT asset risk verdict. Pass ?vendor=siemens&model=s7-1500§or=energy&network=internet-facing. Returns risk_score (0-100), risk_level, escalate (boolean), recommended_action, active CVEs, and threat actors. Optional firmware param enables firmware-specific CVE matching. Cached 1 hour.
50000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-11
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": "50000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"model": "s7-1500",
"network": "internet-facing",
"sector": "energy",
"vendor": "siemens"
},
"type": "http"
},
"output": {
"example": {
"active_campaigns": 2,
"active_cves": 3,
"confidence": "high",
"data_sources": [
"NVD",
"CISA-KEV",
"MITRE-ATT&CK-ICS",
"DeepSeek-CTI-Analysis"
],
"escalate": true,
"freshness": "2026-06-13T10:00:00Z",
"model": "s7-1500",
"network": "internet-facing",
"recommended_action": "isolate",
"risk_level": "critical",
"risk_score": 87,
"sector": "energy",
"threat_actors": [
"VOLTZITE",
"SANDWORM"
],
"top_threat": "VOLTZITE pre-positioning via CVE-2023-38380",
"ttl_seconds": 3600,
"vendor": "siemens"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"firmware": {
"description": "Firmware version e.g. 2.9.2 (optional — enables firmware-specific CVE matching)",
"type": "string"
},
"model": {
"description": "Device model e.g. s7-1500, modicon-m340, controllogix",
"type": "string"
},
"network": {
"description": "Network exposure: internet-facing | dmz | lan-only | air-gapped",
"type": "string"
},
"sector": {
"description": "Industrial sector e.g. energy, water, manufacturing, oil-and-gas",
"type": "string"
},
"vendor": {
"description": "Vendor name e.g. siemens, schneider, rockwell, ge, honeywell",
"type": "string"
}
},
"required": [
"vendor",
"model",
"sector",
"network"
],
"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/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/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/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/8946.json, and this resource appears in /discovery/resources and /discovery/search.