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

# Live event stream (SSE) for the current business + mode

> Pushes the same events dispatched to configured webhooks — payment, deposit, payout, swap, refund, etc. — to the dashboard in real time. Connect with EventSource({ withCredentials: true }) and listen per event name (e.g. addEventListener("payment.completed", ...)).



## OpenAPI

````yaml /openapi.json get /api/v1/realtime/events
openapi: 3.0.0
info:
  title: Dexxify API
  description: >-
    Crypto Infrastructure API for Africa (Wallets, Payouts, Offramp, Onramp,
    KYC, KYB)
  version: '1.0'
  contact:
    name: Dexxify
    url: https://www.dexxify.com
    email: dexxifyhq@gmail.com
servers: []
security: []
tags: []
paths:
  /api/v1/realtime/events:
    get:
      tags:
        - Realtime
      summary: Live event stream (SSE) for the current business + mode
      description: >-
        Pushes the same events dispatched to configured webhooks — payment,
        deposit, payout, swap, refund, etc. — to the dashboard in real time.
        Connect with EventSource({ withCredentials: true }) and listen per event
        name (e.g. addEventListener("payment.completed", ...)).
      operationId: RealtimeController_events
      parameters: []
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object

````