curl https://api.quintai.dev/v1/sessions/6ba7b810-9dad-11d1-80b4-00c04fd430c8/events \
-H "Authorization: Bearer qt_deploy_YOUR_TOKEN"
{
"events": [
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"action_type": "FILE_READ",
"tool_name": "cat",
"arguments": ["/app/src/middleware/auth.ts"],
"risk_score": 5,
"timestamp": "2026-04-12T14:01:00Z"
},
{
"id": "550e8400-e29b-41d4-a716-446655440001",
"action_type": "FILE_WRITE",
"tool_name": "node",
"arguments": ["/app/src/middleware/auth.ts"],
"risk_score": 15,
"timestamp": "2026-04-12T14:05:00Z"
},
{
"id": "550e8400-e29b-41d4-a716-446655440002",
"action_type": "PROCESS_EXEC",
"tool_name": "git",
"arguments": ["commit", "-m", "Fix auth middleware"],
"risk_score": 12,
"timestamp": "2026-04-12T14:06:00Z"
}
]
}
List all events belonging to a specific session.
curl https://api.quintai.dev/v1/sessions/6ba7b810-9dad-11d1-80b4-00c04fd430c8/events \
-H "Authorization: Bearer qt_deploy_YOUR_TOKEN"
{
"events": [
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"action_type": "FILE_READ",
"tool_name": "cat",
"arguments": ["/app/src/middleware/auth.ts"],
"risk_score": 5,
"timestamp": "2026-04-12T14:01:00Z"
},
{
"id": "550e8400-e29b-41d4-a716-446655440001",
"action_type": "FILE_WRITE",
"tool_name": "node",
"arguments": ["/app/src/middleware/auth.ts"],
"risk_score": 15,
"timestamp": "2026-04-12T14:05:00Z"
},
{
"id": "550e8400-e29b-41d4-a716-446655440002",
"action_type": "PROCESS_EXEC",
"tool_name": "git",
"arguments": ["commit", "-m", "Fix auth middleware"],
"risk_score": 12,
"timestamp": "2026-04-12T14:06:00Z"
}
]
}
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.
Authorization: Bearer header with a deploy token (qt_deploy_*) or Supabase JWT.Show event object properties
PROCESS_EXEC, FILE_READ, FILE_WRITE, FILE_DELETE, NETWORK_CONNECT.curl https://api.quintai.dev/v1/sessions/6ba7b810-9dad-11d1-80b4-00c04fd430c8/events \
-H "Authorization: Bearer qt_deploy_YOUR_TOKEN"
{
"events": [
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"action_type": "FILE_READ",
"tool_name": "cat",
"arguments": ["/app/src/middleware/auth.ts"],
"risk_score": 5,
"timestamp": "2026-04-12T14:01:00Z"
},
{
"id": "550e8400-e29b-41d4-a716-446655440001",
"action_type": "FILE_WRITE",
"tool_name": "node",
"arguments": ["/app/src/middleware/auth.ts"],
"risk_score": 15,
"timestamp": "2026-04-12T14:05:00Z"
},
{
"id": "550e8400-e29b-41d4-a716-446655440002",
"action_type": "PROCESS_EXEC",
"tool_name": "git",
"arguments": ["commit", "-m", "Fix auth middleware"],
"risk_score": 12,
"timestamp": "2026-04-12T14:06:00Z"
}
]
}