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.
- L2 order book depth streaming
- 100-level book snapshots
- Lowercase symbol format with underscore delimiter
- Incremental depth updates
- REST-based snapshot synchronization
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.