← Back to Security & Essentials
LLM Threat Modelling
AI-driven threat modelling assistant
https://hub.toolweb.in/security/llm-threat-modelling/
Endpoints
GET
/
Root
GET
/health
Health
POST
/generate-threat-model
Generate Threat Model
Request Body (JSON)
{
"architecture": "<string>"
}
Quick Start
# cURL
curl -H "X-API-Key: YOUR_API_KEY" \ https://hub.toolweb.in/security/llm-threat-modelling/
# Python
import requests
r = requests.get("https://hub.toolweb.in/security/llm-threat-modelling/",
headers={"X-API-Key": "YOUR_API_KEY"})
print(r.json())
# JavaScript
fetch("https://hub.toolweb.in/security/llm-threat-modelling/", {
headers: { "X-API-Key": "YOUR_API_KEY" }
}).then(r => r.json()).then(console.log)
Sign up free to get your API key auto-filled.