Founded
2015
Headquarters
Hong Kong
Type
Centralized Exchange (CEX)
Quote Currency
USDT
Symbol Format
btc_usdt
Latency
<1ms

What We Provide

LBank uses lowercase symbol formatting with underscore delimiters. Our handler normalizes this to the standard Microverse uppercase format for consistent cross-exchange comparison.

Trading pairs: 400+ trading pairs

Protocol: WebSocket with depth channel subscriptions (lowercase format)

Quick Start — LBank via WebSocket

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

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

// Subscribe to LBank BTC order book
ws.send(JSON.stringify({
  "op": "subscribe",
  "channel": "lbank: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 LBank Symbols

A selection of LBank 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 LBank 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 LBank. Click any book to open the full interactive view.

Start Streaming LBank Data

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

API Docs Live Dashboard