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.
Query Parameters
Filter by agent identifier (e.g., claude-code).
Filter by action type: PROCESS_EXEC, FILE_READ, FILE_WRITE, FILE_DELETE, NETWORK_CONNECT.
Filter by tool name (binary basename, e.g., git, curl).
Filter by policy decision: allow, block.
Minimum risk score (0-100).
Maximum risk score (0-100).
ISO 8601 timestamp. Only return events on or after this time.
ISO 8601 timestamp. Only return events on or before this time.
Response
Array of event records matching the filters.Show event object properties
Session UUID this event belongs to.
Detected agent identifier.
Type of action: PROCESS_EXEC, FILE_READ, FILE_WRITE, FILE_DELETE, NETWORK_CONNECT.
Binary basename of the invoked tool.
Process arguments or file paths.
Computed risk score (0-100).
Policy decision: allow or block.
curl "https://api.quintai.dev/v1/events?action_type=PROCESS_EXEC&agent_id=claude-code&risk_min=30" \
-H "Authorization: Bearer qt_deploy_YOUR_TOKEN"
{
"events": [
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"session_id": "6ba7b810-9dad-11d1-80b4-00c04fd430c8",
"agent_id": "claude-code",
"action_type": "PROCESS_EXEC",
"tool_name": "curl",
"arguments": ["-X", "POST", "https://api.example.com/data"],
"risk_score": 45,
"decision": "allow",
"timestamp": "2026-04-12T14:32:00Z"
}
]
}