What We Provide
Crypto.com's large retail user base creates unique order flow patterns. Our handler normalizes their underscore-delimited symbol format into the standard Microverse schema.
- L2 order book depth subscriptions
- 150-level book snapshots
- Incremental depth updates with sequence tracking
- Instrument discovery via REST API
- Heartbeat-based connection management
Trading pairs: 350+ trading pairs across spot markets
Protocol: WebSocket v2 with book.BTC_USDT.150 channel format
Quick Start — Crypto.com via WebSocket
Connect to our unified API and subscribe to Crypto.com data with three lines of code:
// Connect to Microverse Systems API
const ws = new WebSocket("wss://api.microversesystems.com");
// Subscribe to Crypto.com BTC order book
ws.send(JSON.stringify({
"op": "subscribe",
"channel": "cryptocom: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 Crypto.com Symbols
A selection of Crypto.com symbols available through our feed:
BTC_USDT
ETH_USDT
SOL_USDT
XRP_USDT
DOGE_USDT
ADA_USDT
AVAX_USDT
DOT_USDT
LINK_USDT
MATIC_USDT
View all live Crypto.com 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 Crypto.com. Click any book to open the full interactive view.