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

# Board Events SSE

> SSE stream that pushes a notification whenever board state changes. Clients should connect and re-fetch the board on receiving an event.



## OpenAPI

````yaml /openapi.json get /api/workspaces/{id}/board/events
openapi: 3.1.0
info:
  title: Konduktor
  version: 0.1.0
servers:
  - url: http://localhost:8080
    description: Local instance (default)
security: []
paths:
  /api/workspaces/{id}/board/events:
    get:
      tags:
        - board
      summary: Board Events SSE
      description: >-
        SSE stream that pushes a notification whenever board state changes.
        Clients should connect and re-fetch the board on receiving an event.
      operationId: board_events_sse_api_workspaces__id__board_events_get
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
            title: Id
      responses:
        '200':
          description: SSE event stream
          content:
            text/event-stream:
              schema:
                type: string
      security:
        - HTTPBearer: []
components:
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````