Get latest operator results

Returns the latest result for each operator in the session — one entry per operator with its most recent typed result, confidence, and reasoning. Use the SSE stream for live updates as results arrive; use this to read the current state on demand, during or after the session.

Required scope: intelligence:read

Path Parameters
  • session_id
    Type: string · Session Id
    required

    The session identifier returned when the session was created.

Responses
  • application/json
  • application/json
  • application/json
  • application/json
Request Example for get/sessions/{session_id}/operator-results
curl 'https://api.simwood.com/intelligence/v1/sessions/{session_id}/operator-results' \
  --header 'Authorization: Bearer YOUR_SECRET_TOKEN'
[
  {
    "event_type": "string",
    "operator": {
      "name": "string"
    },
    "output_type": "string",
    "result": {
      "additionalProperty": "anything"
    },
    "confidence": 1,
    "reasoning": "string"
  }
]