Audit Dashboard
Real-time log of every compliance scan — tamper-proof, timestamped.
Total Scans
0
Passed
0
Violations Found
0
GDPR Scans
0
HIPAA Scans
0
Recent Scans (last 50)
🛡️
No scans yet. Hit POST /api/v1/scan with an LLM output to start building your audit trail.
API Quick Reference
Send LLM outputs for compliance scanning:
POST /api/v1/scan
Content-Type: application/json
{
"output": "The user's email is alice@example.com and we keep records for 10 years.",
"ruleset": "gdpr"
}
// Response
{
"scanId": 42,
"inputHash": "a3f2...",
"passed": false,
"confidence": 0.65,
"totalViolations": 2,
"violations": [ ... ],
"ruleset": "gdpr",
"scannedAt": "2026-05-21T11:00:00.000Z"
}