What We Provide
Bybit's derivatives market is among the deepest globally, making it essential for perpetual swap pricing. Our handler supports both the v5 unified API and legacy endpoints.
- Spot and linear perpetual L2 order book streams
- 200-level and 500-level depth options
- Delta-based incremental updates with snapshot sync
- Cross-sequence gap detection and recovery
- Unified account instrument support
Trading pairs: 400+ perpetual and spot trading pairs
Protocol: WebSocket v5 with orderbook depth topic subscriptions
Quick Start — Bybit via WebSocket
Connect to our unified API and subscribe to Bybit data with three lines of code:
// Connect to Microverse Systems API
const ws = new WebSocket("wss://api.microversesystems.com");
// Subscribe to Bybit BTC order book
ws.send(JSON.stringify({
"op": "subscribe",
"channel": "bybit: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 Bybit Symbols
A selection of Bybit symbols available through our feed:
BTCUSDT
ETHUSDT
SOLUSDT
XRPUSDT
DOGEUSDT
ADAUSDT
AVAXUSDT
DOTUSDT
LINKUSDT
MATICUSDT
View all live Bybit 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 Bybit. Click any book to open the full interactive view.