What We Provide
BitMart has a particularly wide token listing, covering many smaller-cap assets. Our handler provides depth data for their full catalog via automatic symbol discovery.
- L2 order book depth streaming
- Spot market depth subscriptions
- Underscore-delimited symbol format
- Automatic snapshot and delta sync
- REST API snapshot recovery
Trading pairs: 1000+ trading pairs with broad token coverage
Protocol: WebSocket v2 with spot/depth channel subscriptions
Quick Start — BitMart via WebSocket
Connect to our unified API and subscribe to BitMart data with three lines of code:
// Connect to Microverse Systems API
const ws = new WebSocket("wss://api.microversesystems.com");
// Subscribe to BitMart BTC order book
ws.send(JSON.stringify({
"op": "subscribe",
"channel": "bitmart: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 BitMart Symbols
A selection of BitMart 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 BitMart 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 BitMart. Click any book to open the full interactive view.