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.
This endpoint is rate-limited per organization. It is designed for daemon-to-cloud ingestion, not direct API usage.
Request Body
Session lifecycle events report session start, update, and end transitions.
UUID v5 session identifier.
Human-readable session name.
LLM model used in the session (e.g., claude-sonnet-4-20250514).
Code signing identity of the agent process.
Session state: active, idle, ended.
Agent platform identifier (e.g., claude-code, cursor, windsurf).
Parent session UUID for hierarchical session tracking.
ISO 8601 timestamp of the lifecycle event.
curl -X POST https://api.quintai.dev/v1/sessions/ingest \
-H "Content-Type: application/json" \
-H "Authorization: Bearer qt_deploy_YOUR_TOKEN" \
-d '{
"session_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,
"timestamp": "2026-04-12T14:00:00Z"
}'