What We Provide
CoinEx provides consistent depth data across a wide altcoin catalog. Our handler supports their method-call-based subscription protocol with automatic state management.
- L2 order book depth streaming
- 50-level book snapshots
- Incremental depth updates with diff messages
- Broad altcoin and DeFi token coverage
- Automatic subscription lifecycle management
Trading pairs: 600+ trading pairs
Protocol: WebSocket v2 with depth.subscribe method calls
Quick Start — CoinEx via WebSocket
Connect to our unified API and subscribe to CoinEx data with three lines of code:
// Connect to Microverse Systems API
const ws = new WebSocket("wss://api.microversesystems.com");
// Subscribe to CoinEx BTC order book
ws.send(JSON.stringify({
"op": "subscribe",
"channel": "coinex: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 CoinEx Symbols
A selection of CoinEx symbols available through our feed:
BTCUSDT
ETHUSDT
SOLUSDT
XRPUSDT
DOGEUSDT
ADAUSDT
AVAXUSDT
DOTUSDT
LINKUSDT
MATICUSDT
View all live CoinEx 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 CoinEx. Click any book to open the full interactive view.