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

# Get Message Events



## OpenAPI

````yaml /api-reference/openapi.json get /v1/chats/{chatId}/messages/events
openapi: 3.0.0
info:
  title: HomieAI API
  description: The HomieAI API description
  version: 0.0.1
  contact: {}
servers:
  - url: https://api.yourhomie.ai
    description: Production server
  - url: https://staging.api.yourhomie.ai
    description: Staging server
security: []
tags:
  - name: Chat
    description: ''
  - name: Knowledge
    description: Public, CORS-enabled endpoints for PDP question sets
paths:
  /v1/chats/{chatId}/messages/events:
    get:
      tags:
        - Chat
      summary: Get Message Events
      operationId: ChatController_getEvents
      parameters:
        - name: chatId
          required: true
          in: path
          schema:
            type: string
      responses:
        '200':
          description: Einzelnes MessageEventDto (wird als SSE-Event gesendet)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MessageEventDto'
      security:
        - bearer: []
components:
  schemas:
    MessageEventDto:
      type: object
      properties:
        chatId:
          type: string
          description: ID des Chats
        eventId:
          type: string
          description: ID des Events
        toolName:
          type: string
          description: Name des Tools, das verwendet wurde
        content:
          type: string
          description: Inhalt der Nachricht oder Eventbeschreibung
        toolArgs:
          type: object
          description: Optionales Objekt mit Parametern, die an das Tool übergeben wurden
        toolResponse:
          type: object
          description: Optionales Objekt mit der Antwort vom Tool
        status:
          type: string
          description: Status des Events
          enum:
            - inProgress
            - completed
            - failed
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````