WebSocket Stream Connection

Establish a low-latency websocket stream to listen to cross-exchange price spreads and triangular arbitrage data matches.

Rate Limits & SLA

Standard Tier accounts are rate-limited to 60 telemetry requests per minute. Enterprise licenses receive customized websocket pools with dedicated SLAs, 0ms execution latency, and zero rate-limiting.

Sample Integration (Node.js)

// Establish low-latency WebSocket connection
import WebSocket from 'ws';

const ws = new WebSocket('wss://api.arbitragesmartai.com/v1/telemetry');

ws.on('open', () => {
    console.log('CONNECTED: Low-latency telemetry stream active.');
    ws.send(JSON.stringify({ action: 'subscribe', pair: 'BTCUSDT' }));
});

ws.on('message', (data) => {
    const payload = JSON.parse(data);
    console.log('SPREAD DETECTED:', payload.spreadPercentage + '%');
});