Founded
2016
Headquarters
Panama
Type
Derivatives Exchange
Quote Currency
USD/USDC
Symbol Format
BTC-PERPETUAL
Latency
<1ms

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.

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.

Start Streaming Deribit Data

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

API Docs Live Dashboard