← Back to Security & Essentials

OT/IT Convergence NIST CSF Assessor

Hybrid Industrial Environment Risk & Framework Alignment Tool

https://hub.toolweb.in/security/itotassessor/

Endpoints

POST /assess

Generate Assessment

Request Body (JSON)

{
  "org_name": "<string>",
  "sector": "<string>",
  "ot_size": "<string>",
  "integration_level": "<string>",
  "ot_technologies": [],
  "it_tools": [],
  "csf_scores": "<string>",
  "threat_concern": "<string>",
  "compliance": "<string>",
  "known_gaps": "<string>",
  "team_maturity": "<string>",
  "assessment_depth": "standard"
}
GET /health

Health Check

Quick Start

# cURL
curl -H "X-API-Key: YOUR_API_KEY" \
  https://hub.toolweb.in/security/itotassessor/
# Python
import requests
r = requests.get("https://hub.toolweb.in/security/itotassessor/",
    headers={"X-API-Key": "YOUR_API_KEY"})
print(r.json())
# JavaScript
fetch("https://hub.toolweb.in/security/itotassessor/", {
  headers: { "X-API-Key": "YOUR_API_KEY" }
}).then(r => r.json()).then(console.log)

Sign up free to get your API key auto-filled.