Skip to main content
GET
/
v1
/
events
/
stats
curl https://api.quintai.dev/v1/events/stats \
  -H "Authorization: Bearer qt_deploy_YOUR_TOKEN"
{
  "total_events": 1247,
  "period": "24h",
  "by_action_type": {
    "PROCESS_EXEC": 892,
    "FILE_READ": 201,
    "FILE_WRITE": 134,
    "NETWORK_CONNECT": 20
  },
  "by_risk_level": {
    "none": 980,
    "low": 187,
    "medium": 62,
    "high": 15,
    "critical": 3
  }
}

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.

Requires Authorization: Bearer header with a deploy token (qt_deploy_*) or Supabase JWT.

Response

Returns aggregate event statistics for the last 24 hours.
curl https://api.quintai.dev/v1/events/stats \
  -H "Authorization: Bearer qt_deploy_YOUR_TOKEN"
{
  "total_events": 1247,
  "period": "24h",
  "by_action_type": {
    "PROCESS_EXEC": 892,
    "FILE_READ": 201,
    "FILE_WRITE": 134,
    "NETWORK_CONNECT": 20
  },
  "by_risk_level": {
    "none": 980,
    "low": 187,
    "medium": 62,
    "high": 15,
    "critical": 3
  }
}