Skip to main content
GET
/
v1
/
sessions
curl "https://api.quintai.dev/v1/sessions?state=active&root_only=true" \
  -H "Authorization: Bearer qt_deploy_YOUR_TOKEN"
{
  "sessions": [
    {
      "id": "6ba7b810-9dad-11d1-80b4-00c04fd430c8",
      "session_name": "Fix auth middleware",
      "model": "claude-sonnet-4-20250514",
      "signing_id": "com.anthropic.claude-code",
      "state": "active",
      "platform": "claude-code",
      "parent_id": null,
      "started_at": "2026-04-12T14:00:00Z",
      "ended_at": null
    }
  ]
}

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

state
string
Filter by session state: active, idle, ended.
platform
string
Filter by agent platform (e.g., claude-code, cursor).
root_only
boolean
When true, return only root sessions (no parent). Useful for top-level overview.
since
datetime
ISO 8601 timestamp. Only return sessions started on or after this time.

Response

sessions
array
Array of session records matching the filters.
curl "https://api.quintai.dev/v1/sessions?state=active&root_only=true" \
  -H "Authorization: Bearer qt_deploy_YOUR_TOKEN"
{
  "sessions": [
    {
      "id": "6ba7b810-9dad-11d1-80b4-00c04fd430c8",
      "session_name": "Fix auth middleware",
      "model": "claude-sonnet-4-20250514",
      "signing_id": "com.anthropic.claude-code",
      "state": "active",
      "platform": "claude-code",
      "parent_id": null,
      "started_at": "2026-04-12T14:00:00Z",
      "ended_at": null
    }
  ]
}