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

# Conversation Events

> Tail the SSE event stream of an in-progress conversation run.

Reads the same `vercel::{conversation_id}` Redis stream that the worker
publishes to (and that `/stream` consumes). Use `?etag=` to resume from a
specific Redis stream id; use `?format=json` for normalised envelope
frames (`event: message\ndata: {"event": ..., "data": ...}`).



## OpenAPI

````yaml get /v1/conversations/{conversation_id}/events
openapi: 3.1.0
info:
  title: Noxus Backend
  description: >-
    Backend API for the Noxus Platform. More information can be found at
    https://docs.noxus.ai
  version: 1.1.0
servers: []
security: []
paths:
  /v1/conversations/{conversation_id}/events:
    get:
      tags:
        - V1 - Conversations
      summary: Conversation Events
      description: >-
        Tail the SSE event stream of an in-progress conversation run.


        Reads the same `vercel::{conversation_id}` Redis stream that the worker

        publishes to (and that `/stream` consumes). Use `?etag=` to resume from
        a

        specific Redis stream id; use `?format=json` for normalised envelope

        frames (`event: message\ndata: {"event": ..., "data": ...}`).
      operationId: conversation_events
      parameters:
        - name: conversation_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Conversation Id
        - name: format
          in: query
          required: false
          schema:
            enum:
              - vercel
              - json
            type: string
            default: vercel
            title: Format
        - name: etag
          in: query
          required: false
          schema:
            type: string
            title: Etag
        - name: token
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Public access token
            title: Token
          description: Public access token
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - APIKeyHeader: []
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: X-API-Key

````