What We Provide
Deribit dominates crypto derivatives with over 90% of BTC options volume. Our handler covers all 52 perpetual instruments including inverse (USD) and linear (USDC) contracts, providing essential pricing for derivatives traders.
- Perpetual swap L2 order book data
- BTC and ETH inverse perpetuals (USD-settled)
- USDC-margined perpetuals for major assets
- Custom symbol format (ASSET-PERPETUAL, ASSET_USDC-PERPETUAL)
- 52 perpetual instruments covering top crypto assets
Trading pairs: 52 perpetual contract instruments
Protocol: WebSocket v2 with book.BTC-PERPETUAL.none.20 subscriptions
Quick Start — Deribit via WebSocket
Connect to our unified API and subscribe to Deribit data with three lines of code:
// Connect to Microverse Systems API
const ws = new WebSocket("wss://api.microversesystems.com");
// Subscribe to Deribit BTC order book
ws.send(JSON.stringify({
"op": "subscribe",
"channel": "deribit: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 Deribit Symbols
A selection of Deribit symbols available through our feed:
BTC-PERPETUAL
ETH-PERPETUAL
SOL_USDC-PERPETUAL
View all live Deribit 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 Deribit. Click any book to open the full interactive view.