Skip to main content
GET
/
v1
/
sessions
/
{id}
/
children
curl https://api.quintai.dev/v1/sessions/6ba7b810-9dad-11d1-80b4-00c04fd430c8/children \
  -H "Authorization: Bearer qt_deploy_YOUR_TOKEN"
{
  "children": [
    {
      "id": "7ca8c921-aeae-22e2-91c5-11d15ge541d9",
      "session_name": "MCP server task",
      "model": "claude-sonnet-4-20250514",
      "state": "ended",
      "platform": "claude-code",
      "parent_id": "6ba7b810-9dad-11d1-80b4-00c04fd430c8",
      "started_at": "2026-04-12T14:10:00Z",
      "ended_at": "2026-04-12T14:12: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 parent session.

Response

children
array
Array of child session records.
curl https://api.quintai.dev/v1/sessions/6ba7b810-9dad-11d1-80b4-00c04fd430c8/children \
  -H "Authorization: Bearer qt_deploy_YOUR_TOKEN"
{
  "children": [
    {
      "id": "7ca8c921-aeae-22e2-91c5-11d15ge541d9",
      "session_name": "MCP server task",
      "model": "claude-sonnet-4-20250514",
      "state": "ended",
      "platform": "claude-code",
      "parent_id": "6ba7b810-9dad-11d1-80b4-00c04fd430c8",
      "started_at": "2026-04-12T14:10:00Z",
      "ended_at": "2026-04-12T14:12:00Z"
    }
  ]
}