Skip to main content
GET
/
oracle
/
jobs
/
{job_id}
/
stream
Stream Oracle job events (SSE)
curl --request GET \
  --url https://apigcp.trynia.ai/v2/oracle/jobs/{job_id}/stream \
  --header 'Authorization: Bearer <token>'
"<string>"

Authorizations

Authorization
string
header
required

API key must be provided in the Authorization header

Path Parameters

job_id
string
required

Job identifier to stream

Response

SSE stream of job events

Stream of Server-Sent Events with JSON payloads:

data: {"type": "connected", "job_id": "...", "session_id": "...", "timestamp": "..."}

data: {"type": "tool_start", "action": "run_doc_search", "args": {...}, "reason": "...", "iteration": 1}

data: {"type": "tool_complete", "action": "run_doc_search", "success": true, "result_summary": "...", "iteration": 1}

data: {"type": "complete", "session_id": "...", "result": {...}}