← Back to Compliance & GRC
NIST CSF Mapper
Map controls to NIST Cybersecurity Framework
https://hub.toolweb.in/compliance/nist-csf-mapper/
Endpoints
POST
/nist-mapping
Nist Framework Mapping
Request Body (JSON)
{
"company_size": "<string>",
"industry": "<string>",
"current_tools": "<array>",
"has_firewall": "<boolean>",
"has_antivirus": "<boolean>",
"has_backup_system": "<boolean>",
"has_monitoring": "<boolean>",
"has_incident_response": "<boolean>",
"has_access_controls": "<boolean>",
"has_data_encryption": "<boolean>",
"has_vulnerability_scanning": "<boolean>",
"has_security_training": "<boolean>",
"has_business_continuity": "<boolean>",
"regulatory_requirements": "<array>"
}
Quick Start
# cURL
curl -H "X-API-Key: YOUR_API_KEY" \ https://hub.toolweb.in/compliance/nist-csf-mapper/
# Python
import requests
r = requests.get("https://hub.toolweb.in/compliance/nist-csf-mapper/",
headers={"X-API-Key": "YOUR_API_KEY"})
print(r.json())
# JavaScript
fetch("https://hub.toolweb.in/compliance/nist-csf-mapper/", {
headers: { "X-API-Key": "YOUR_API_KEY" }
}).then(r => r.json()).then(console.log)
Sign up free to get your API key auto-filled.