Founded
2012
Headquarters
Hong Kong
Type
Centralized Exchange (CEX)
Quote Currency
USD
Symbol Format
tBTCUSD
Latency
<1ms

What We Provide

Bitfinex uses a compact array format instead of JSON objects for bandwidth efficiency, and employs a smart colon delimiter for longer symbol names. Our parser handles both formats transparently.

Trading pairs: 400+ trading pairs with USD, UST, and BTC quotes

Protocol: WebSocket v2 with book channel and precision-level subscriptions

Quick Start — Bitfinex via WebSocket

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

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

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

A selection of Bitfinex symbols available through our feed:

tBTCUSD
tETHUSD
tSOLUSD
tXRPUSD
tDOGEUSD
tADAUSD
tAVAXUSD
tDOTUSD
tLINKUSD
tMATICUSD

View all live Bitfinex 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 Bitfinex. Click any book to open the full interactive view.

Start Streaming Bitfinex Data

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

API Docs Live Dashboard