> ## Documentation Index
> Fetch the complete documentation index at: https://quintsecurity.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Event

> Retrieve a single event by its ID.

<Note>
  Requires `Authorization: Bearer` header with a deploy token (`qt_deploy_*`) or Supabase JWT.
</Note>

## Path Parameters

<ParamField path="id" type="string" required>
  UUID of the event to retrieve.
</ParamField>

## Response

<ResponseField name="id" type="string">
  Event UUID.
</ResponseField>

<ResponseField name="session_id" type="string">
  Session UUID this event belongs to.
</ResponseField>

<ResponseField name="agent_id" type="string">
  Detected agent identifier.
</ResponseField>

<ResponseField name="action_type" type="string">
  Type of action: `PROCESS_EXEC`, `FILE_READ`, `FILE_WRITE`, `FILE_DELETE`, `NETWORK_CONNECT`.
</ResponseField>

<ResponseField name="tool_name" type="string">
  Binary basename of the invoked tool.
</ResponseField>

<ResponseField name="arguments" type="array">
  Process arguments or file paths.
</ResponseField>

<ResponseField name="risk_score" type="integer">
  Computed risk score (0-100).
</ResponseField>

<ResponseField name="decision" type="string">
  Policy decision: `allow` or `block`.
</ResponseField>

<ResponseField name="timestamp" type="datetime">
  When the event occurred.
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl https://api.quintai.dev/v1/events/550e8400-e29b-41d4-a716-446655440000 \
    -H "Authorization: Bearer qt_deploy_YOUR_TOKEN"
  ```

  ```python Python theme={null}
  import requests

  response = requests.get(
      "https://api.quintai.dev/v1/events/550e8400-e29b-41d4-a716-446655440000",
      headers={"Authorization": "Bearer qt_deploy_YOUR_TOKEN"},
  )
  print(response.json())
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "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"
  }
  ```
</ResponseExample>
