Founded
2018
Headquarters
Singapore
Type
Centralized Exchange (CEX)
Quote Currency
USDT
Symbol Format
BTC-USDT
Latency
<1ms

What We Provide

BingX's social trading features create retail-driven order flow. Our handler decompresses their GZIP frames inline and normalizes data into the standard Microverse format.

Trading pairs: 300+ spot and perpetual pairs

Protocol: WebSocket with depth channel subscriptions

Quick Start — BingX via WebSocket

Connect to our unified API and subscribe to BingX data with three lines of code:

// Connect to Microverse Systems API
const ws = new WebSocket("wss://api.microversesystems.com");

// Subscribe to BingX BTC order book
ws.send(JSON.stringify({
  "op": "subscribe",
  "channel": "bingx:BTC-USDT",
  "depth": 20
}));

// Receive real-time L2 updates
ws.onmessage = (e) => {
  const book = JSON.parse(e.data);
  console.log(book.bids[0], book.asks[0]); // best bid/ask
};

Full API documentation →

Sample BingX Symbols

A selection of BingX symbols available through our feed:

BTC-USDT
ETH-USDT
SOL-USDT
XRP-USDT
DOGE-USDT
ADA-USDT
AVAX-USDT
DOT-USDT
LINK-USDT
MATIC-USDT

View all live BingX symbols on the dashboard →

Other Exchanges

Microverse Systems covers 20+ exchanges through a single API. Explore our other exchange feeds:

Live Order Books

Real-time order book depth for BingX. Click any book to open the full interactive view.

Start Streaming BingX Data

Connect to our WebSocket API and receive real-time BingX order books in seconds.

API Docs Live Dashboard