Skip to main content
GET
/
v1
/
sessions
/
{id}
curl https://api.quintai.dev/v1/sessions/6ba7b810-9dad-11d1-80b4-00c04fd430c8 \
  -H "Authorization: Bearer qt_deploy_YOUR_TOKEN"
{
  "id": "6ba7b810-9dad-11d1-80b4-00c04fd430c8",
  "session_name": "Fix auth middleware",
  "model": "claude-sonnet-4-20250514",
  "signing_id": "com.anthropic.claude-code",
  "state": "ended",
  "platform": "claude-code",
  "parent_id": null,
  "started_at": "2026-04-12T14:00:00Z",
  "ended_at": "2026-04-12T14:45:00Z",
  "children": [],
  "risk_summary": {
    "total_events": 47,
    "max_risk": 35,
    "avg_risk": 8
  }
}

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 session to retrieve.

Response

id
string
Session UUID.
session_name
string
Human-readable session name.
model
string
LLM model used.
signing_id
string
Code signing identity of the agent process.
state
string
Current state: active, idle, ended.
platform
string
Agent platform identifier.
parent_id
string
Parent session UUID, or null for root sessions.
started_at
datetime
When the session began.
ended_at
datetime
When the session ended. null if still active.
children
array
Child sessions spawned from this session.
risk_summary
object
Aggregate risk statistics for this session.
curl https://api.quintai.dev/v1/sessions/6ba7b810-9dad-11d1-80b4-00c04fd430c8 \
  -H "Authorization: Bearer qt_deploy_YOUR_TOKEN"
{
  "id": "6ba7b810-9dad-11d1-80b4-00c04fd430c8",
  "session_name": "Fix auth middleware",
  "model": "claude-sonnet-4-20250514",
  "signing_id": "com.anthropic.claude-code",
  "state": "ended",
  "platform": "claude-code",
  "parent_id": null,
  "started_at": "2026-04-12T14:00:00Z",
  "ended_at": "2026-04-12T14:45:00Z",
  "children": [],
  "risk_summary": {
    "total_events": 47,
    "max_risk": 35,
    "avg_risk": 8
  }
}