What We Provide
Phemex encodes prices using a scale-factor (Ep) notation for precision. Our handler automatically converts these to standard decimal representation with 8 decimal places.
- Spot and contract L2 order book data
- Full depth incremental updates
- Scale-factor price encoding (prices in Ep notation)
- Automatic scale conversion to standard decimal
- Sequence-based synchronization
Trading pairs: 200+ spot and contract trading pairs
Protocol: WebSocket with orderbook subscription and Ep-scaled prices
Quick Start — Phemex via WebSocket
Connect to our unified API and subscribe to Phemex data with three lines of code:
// Connect to Microverse Systems API
const ws = new WebSocket("wss://api.microversesystems.com");
// Subscribe to Phemex BTC order book
ws.send(JSON.stringify({
"op": "subscribe",
"channel": "phemex: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 Phemex Symbols
A selection of Phemex symbols available through our feed:
sBTCUSDT
sETHUSDT
sSOLUSDT
sXRPUSDT
sDOGEUSDT
sADAUSDT
sAVAXUSDT
sDOTUSDT
sLINKUSDT
sMATICUSDT
View all live Phemex 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 Phemex. Click any book to open the full interactive view.