WebSocket Events

Reference of all events emitted by the Streamer.bot WebSocket Server
Events are only emitted if they have been subscribed to

Schema

All events are sent from the server in stringified JSON format.

Event payloads follow the following base schema:

{
  "timeStamp": Date, // ISO 8601 DateTime
  "event": {
    "source": string,
    "type": string
  },
  "data": {
    // Data for the respective event
  }
}