EXMO
Social Networks
Volume by Market
Market | Volume | USD Volume | % |
---|---|---|---|
USD | 8.4M | 8.4M | 35.2% |
USDT | 7.5M | 7.5M | 31.1% |
EUR | 3.2M | 3.8M | 15.8% |
BTC | 16 | 1.8M | 7.6% |
ETH | 401 | 1.0M | 4.2% |
USDC | 883.4K | 886.5K | 3.7% |
GBP | 298.0K | 405.4K | 1.7% |
LTC | 1.9K | 161.9K | 0.7% |
BRL | 70.9K | 13.0K | 0.1% |
UAH | 390.6M | - | - |
1-10 of 15
Coinsamba Library Usage
Use the Coinsamba library to get these data in your system
1. Select your package manager and install the library
npm install @coinsamba/js-exchanges-connector
2. Import the library
import { exmo } from '@coinsamba/js-exchanges-connector'
3. Use the available methods
const exchange = new exmo();
// check if this method is available
const canGetAllTickers = exchange.hasAllTickers;
if (canGetAllTickers) {
const tickers = await exchange.getAllTickers();
// do something with the tickers
console.log(tickers);
}