ELL ENA

WebSocket APIs

Real-time, bidirectional communication for your web applications built with Ellena's WebSocket endpoints.

Explore Features

Real-Time Data

Push and receive live data updates without polling limitations.

Low Latency

Optimized for fast connections with minimal overhead and message headers.

Secure by Design

Built with SSL/TLS encryption for every connection and authentication protocol layering.

WebSocket Capabilities

Real-Time Data Channels

Maintain persistent bidirectional connections for instant data exchange between clients and servers.

  • Instant message delivery
  • Persistent 24/7 connections
  • Binary and UTF-8 text support

Scalable Architecture

Auto-scaling and load balancing for handling thousands of concurrent connections efficiently.

  • 10,000+ connections per node
  • Auto scaling and clustering
  • 99.9% uptime SLA

Getting Started

1. Connect

Use our WebSocket client SDK to establish a secure connection to Ellena's endpoints. We support both wss and ws protocols.

const socket = new WebSocket('wss:/api.ellena.com/socket');
socket.onopen = () => {
   console.log('Connected to Ellena WebSocket');
}
                        

2. Messages

Use JSON payloads to send and receive structured data. All messages are automatically encrypted using TLS.

{
  "cmd": "subscribe",
  "topic": "marketdata",
  "format": "json"
}