Bearer tokens for the v1 read API. SIEMs poll the audit log, ticketing systems consume recommendations, custom dashboards read findings. Every token is tenant- scoped + SHA-256 hashed at rest — the plaintext is shown exactly once on creation.
Pick the narrowest scope your integration needs.
0 active · 0 revoked
Create one above to start using the REST API.
# List open critical/high findings
curl -H "Authorization: Bearer vtk_live_…" \
"${BASE}/api/v1/findings?severity=critical,high"
# Pull recommendations needing engineer attention
curl -H "Authorization: Bearer vtk_live_…" \
"${BASE}/api/v1/recommendations?status=open,acknowledged"
# Incremental audit-log poll (SIEM)
curl -H "Authorization: Bearer vtk_live_…" \
"${BASE}/api/v1/audit-log?since=2026-05-29T00:00:00Z"All endpoints return JSON with cursor pagination. See thefull reference .