Skip to main content
GET
/
v1
/
events
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"
    }
  ]
}

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

agent_id
string
Filter by agent identifier (e.g., claude-code).
session_id
string
Filter by session UUID.
action_type
string
Filter by action type: PROCESS_EXEC, FILE_READ, FILE_WRITE, FILE_DELETE, NETWORK_CONNECT.
tool_name
string
Filter by tool name (binary basename, e.g., git, curl).
decision
string
Filter by policy decision: allow, block.
risk_min
integer
Minimum risk score (0-100).
risk_max
integer
Maximum risk score (0-100).
since
datetime
ISO 8601 timestamp. Only return events on or after this time.
until
datetime
ISO 8601 timestamp. Only return events on or before this time.

Response

events
array
Array of event records matching the filters.
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"
    }
  ]
}