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

# Notification Stream

> Server-Sent Events stream that pushes notifications in real time.



## OpenAPI

````yaml /api-reference/openapi.json get /api/notifications/stream
openapi: 3.1.0
info:
  title: apowerb API
  description: REST API of the apowerb agentic framework (open-source edition).
  version: 0.1.2
  license:
    name: MIT
    url: https://github.com/apowerb/apowerb/blob/main/LICENSE
servers:
  - url: https://api.example.com
    description: Your apowerb instance
  - url: http://localhost:8000
    description: Local stack
security: []
paths:
  /api/notifications/stream:
    get:
      tags:
        - notifications
      summary: Notification Stream
      description: Server-Sent Events stream that pushes notifications in real time.
      operationId: notification_stream_api_notifications_stream_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
      security:
        - HTTPBearer: []
components:
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````

## Related topics

- [SSE streaming](/guides/streaming.md)
- [List Notifications](/api-reference/notifications/list-notifications.md)
- [Receive Notification](/api-reference/webhooks/receive-notification.md)
- [Rag Stream](/api-reference/rag/rag-stream.md)
- [Mark As Read](/api-reference/notifications/mark-as-read.md)
