Skip to main content

Documentation Index

Fetch the complete documentation index at: https://quintsecurity.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Risk Scoring

Every event captured by the Quint daemon receives a risk score from 0 to 100. Scores are computed based on the action type, tool invoked, target sensitivity, and behavioral context. Risk scores are included as fields on events and can be filtered via the Events API:
# Get events with risk score above 50
curl "https://api.quintai.dev/v1/events?risk_min=50" \
  -H "Authorization: Bearer qt_deploy_YOUR_TOKEN"

Score Bands

ScoreRisk LevelColor
0-10NoneGreen
11-30LowBlue
31-55MediumYellow
56-80HighOrange
81-100CriticalRed

Aggregate Statistics

The GET /v1/events/stats endpoint provides 24-hour aggregates including event counts and risk distribution:
curl https://api.quintai.dev/v1/events/stats \
  -H "Authorization: Bearer qt_deploy_YOUR_TOKEN"

Session Risk Summary

Each session includes a risk summary when retrieved via GET /v1/sessions/{id}, showing total events, maximum risk score, and average risk across all events in the session.