Guides

Documentation

Everything to deploy and operate SentinelAI.

Quickstart

Get SentinelAI streaming your telemetry in under 5 minutes.

Agents

How each of the five agents thinks, acts, and reports.

REST & WebSocket APIs

Ingest logs and subscribe to live events over WS.

Playbooks

Prebuilt autonomous response playbooks (R-001 → R-090).

Ingest a log via REST

curl -X POST https://api.sentinelai.example/v1/logs \
  -H "Authorization: Bearer $SENTINEL_KEY" \
  -H "Content-Type: application/json" \
  -d '{"source":"10.0.0.4","event":"failed_auth","risk":72}'

Subscribe over WebSocket

const ws = new WebSocket("wss://api.sentinelai.example/v1/stream");
ws.onmessage = (e) => console.log("event", JSON.parse(e.data));