Skip to main content

Status

🚧 Coming soon In the meantime, you can connect using native WebSockets:
const ws = new WebSocket("ws://89.58.15.24:8765");

ws.onopen = () => {
  ws.send(JSON.stringify({
    type: "login",
    apiKey: "YOUR_API_KEY"
  }));
};