Skip to main content
GET
/
v1
/
events
/
{id}
curl https://api.quintai.dev/v1/events/550e8400-e29b-41d4-a716-446655440000 \
  -H "Authorization: Bearer qt_deploy_YOUR_TOKEN"
{
  "id": "550e8400-e29b-41d4-a716-446655440000",
  "session_id": "6ba7b810-9dad-11d1-80b4-00c04fd430c8",
  "agent_id": "claude-code",
  "action_type": "PROCESS_EXEC",
  "tool_name": "git",
  "arguments": ["commit", "-m", "Fix auth bug"],
  "risk_score": 12,
  "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.

Path Parameters

id
string
required
UUID of the event to retrieve.

Response

id
string
Event UUID.
session_id
string
Session UUID this event belongs to.
agent_id
string
Detected agent identifier.
action_type
string
Type of action: PROCESS_EXEC, FILE_READ, FILE_WRITE, FILE_DELETE, NETWORK_CONNECT.
tool_name
string
Binary basename of the invoked tool.
arguments
array
Process arguments or file paths.
risk_score
integer
Computed risk score (0-100).
decision
string
Policy decision: allow or block.
timestamp
datetime
When the event occurred.
curl https://api.quintai.dev/v1/events/550e8400-e29b-41d4-a716-446655440000 \
  -H "Authorization: Bearer qt_deploy_YOUR_TOKEN"
{
  "id": "550e8400-e29b-41d4-a716-446655440000",
  "session_id": "6ba7b810-9dad-11d1-80b4-00c04fd430c8",
  "agent_id": "claude-code",
  "action_type": "PROCESS_EXEC",
  "tool_name": "git",
  "arguments": ["commit", "-m", "Fix auth bug"],
  "risk_score": 12,
  "decision": "allow",
  "timestamp": "2026-04-12T14:32:00Z"
}