Skip to main content
POST
/
v1
/
events
/
ingest
curl -X POST https://api.quintai.dev/v1/events/ingest \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer qt_deploy_YOUR_TOKEN" \
  -d '{
    "events": [
      {
        "action_type": "PROCESS_EXEC",
        "tool_name": "git",
        "arguments": ["commit", "-m", "Fix auth bug"],
        "session_id": "6ba7b810-9dad-11d1-80b4-00c04fd430c8",
        "agent_id": "claude-code",
        "timestamp": "2026-04-12T14:32:00Z"
      }
    ]
  }'
{
  "ingested": 1
}

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

events
array
required
Array of event objects captured by the daemon.
curl -X POST https://api.quintai.dev/v1/events/ingest \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer qt_deploy_YOUR_TOKEN" \
  -d '{
    "events": [
      {
        "action_type": "PROCESS_EXEC",
        "tool_name": "git",
        "arguments": ["commit", "-m", "Fix auth bug"],
        "session_id": "6ba7b810-9dad-11d1-80b4-00c04fd430c8",
        "agent_id": "claude-code",
        "timestamp": "2026-04-12T14:32:00Z"
      }
    ]
  }'
{
  "ingested": 1
}