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
}
Event Endpoints
Ingest Events
Ingest events captured by the Quint daemon. Rate-limited per organization. Used by the endpoint agent to push captured system events.
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
}
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
array
required
Array of event objects captured by the daemon.
Show event object properties
Show event object properties
string
required
Type of OS-level action:
PROCESS_EXEC, FILE_READ, FILE_WRITE, FILE_DELETE, NETWORK_CONNECT.string
Binary basename of the tool invoked (e.g.,
git, node, curl).array
Process arguments or file paths associated with the action.
string
UUID v5 session identifier linking this event to a session.
string
Identifier of the detected AI agent.
datetime
required
ISO 8601 timestamp of when the event occurred.
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
}