What We Provide
Upbit uses a reverse symbol format (USDT-BTC instead of BTC-USDT) and serves the Korean market where significant crypto premiums (kimchi premium) are observed. Our handler normalizes the reversed format transparently.
- L2 order book streaming
- Korean Won (KRW) and USDT pair coverage
- Reverse symbol format handling (QUOTE-BASE)
- Automatic format normalization
- REST-based snapshot synchronization
Trading pairs: 200+ pairs with KRW and USDT quotes
Protocol: WebSocket with orderbook type subscriptions
Quick Start — Upbit via WebSocket
Connect to our unified API and subscribe to Upbit data with three lines of code:
// Connect to Microverse Systems API
const ws = new WebSocket("wss://api.microversesystems.com");
// Subscribe to Upbit BTC order book
ws.send(JSON.stringify({
"op": "subscribe",
"channel": "upbit: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 Upbit Symbols
A selection of Upbit symbols available through our feed:
USDT-BTC
USDT-ETH
USDT-SOL
USDT-XRP
USDT-DOGE
USDT-ADA
USDT-AVAX
USDT-DOT
USDT-LINK
USDT-MATIC
View all live Upbit 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 Upbit. Click any book to open the full interactive view.