| GET | / | Static UI (no auth required) |
| GET | /health | Health check (no auth required) |
| GET | /metrics | Prometheus metrics (no auth required) |
| GET | /swagger/* | Swagger UI and OpenAPI spec (no auth required) |
| GET | /server-info | Server status (no auth required) |
| POST | /api/auth/login | File-based login → bearer token |
| GET | /api/info | App info / build metadata |
| GET | /api/user/info | Current user |
| GET | /api/projects | List projects |
| GET | /api/modules | List available scanner modules |
| GET | /api/http-records | Query stored HTTP records |
| GET | /api/findings | Query scan findings |
| PATCH | /api/findings/:id/status | Update finding status (open/triaged/closed) |
| POST | /api/ingest-http | Ingest HTTP traffic into the database |
| POST | /api/import | Bulk import scans/records/findings |
| GET | /api/stats | Aggregated scan statistics |
| GET | /api/oast-interactions | List OAST callbacks |
| GET, POST | /api/scope | View/update scope configuration |
| GET, POST | /api/config | View/update server configuration |
| POST | /api/scans/run | Trigger a background scan |
| POST | /api/scan-url | Scan a single URL |
| POST | /api/scan-request | Scan a single raw request |
| POST | /api/scan-records | Scan specific record UUIDs |
| POST | /api/scan-all-records | Scan filtered records |
| GET | /api/scans | List scans |
| GET | /api/scans/:uuid | Scan status |
| GET | /api/scans/:uuid/logs | Scan logs (SSE supported) |
| POST | /api/scans/:uuid/stop | Cancel a running scan |
| POST | /api/scans/:uuid/pause | Pause a scan |
| POST | /api/scans/:uuid/resume | Resume a scan |
| POST | /api/scans/:uuid/update | Adjust scan parameters mid-run |
| GET | /api/scan/status | Latest scan status (legacy/global) |
| POST | /api/agent/run/query | Single-shot agent prompt execution |
| POST | /api/agent/run/autopilot | Autonomous AI-driven scanning session |
| POST | /api/agent/run/swarm | AI-guided multi-phase vulnerability scan |
| POST | /api/agent/run/audit | Audit/piolium driver dispatcher (driver: auto|both|audit|piolium) |
| GET | /api/agent/status/list | List agent runs |
| GET | /api/agent/status/:id | Get agent run status (includes full result when completed) |
| GET | /api/agent/sessions | Paginated session history |
| GET | /api/agent/sessions/:id/logs | Tail or read runtime.log (SSE supported) |
| GET | /api/agent/sessions/:id/artifacts[/:filename] | Browse / fetch agent session artifacts |
| POST | /api/agent/chat/completions | OpenAI-compatible chat completions |
| POST | /api/storage/upload-source | Upload source archive to cloud storage |
| POST | /api/storage/presign | Pre-signed upload/download URLs |
| GET | /api/storage/source/:key | Download a stored source archive |
| GET | /api/diagnostics | System readiness check |
| GET | /api/db/tables | List database tables |
| GET, POST | /api/db/tables/:name/records | Generic table browser (read / queries) |
| GET | /api/extensions | List loaded extensions |
| PUT, POST | /api/extensions/:name | Upload / enable extension |