> ## Documentation Index
> Fetch the complete documentation index at: https://docs.tai42.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Stream the interactions inbox live tail



## OpenAPI

````yaml /openapi.json get /api/interactions/stream
openapi: 3.1.0
info:
  description: The operator HTTP surface served under /api/*.
  title: tai42-skeleton API
  version: 14.0.2
servers: []
security: []
paths:
  /api/interactions/stream:
    get:
      tags:
        - interactions
      summary: Stream the interactions inbox live tail
      operationId: get_api_interactions_stream
      responses:
        '200':
          content:
            text/event-stream:
              schema:
                type: string
          description: 'Interactions inbox live tail: SSE StreamingResponse'
          x-no-body: 'Interactions inbox live tail: SSE StreamingResponse'
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
          description: Missing or invalid api key.
        '501':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
          description: Error.
      security:
        - ApiKeyAuth: []
components:
  schemas:
    Error:
      properties:
        code:
          description: >-
            Stable machine-readable reason a client keys a dedicated error state
            on, present on refusals that opt in (e.g. a 501 not-configured
            refusal). Optional: absent when the error carries only a
            human-readable message.
          type: string
        error:
          type: string
      required:
        - error
      type: object
  securitySchemes:
    ApiKeyAuth:
      in: header
      name: x-api-key
      type: apiKey

````