EXMO
Social Networks
Volume by Market
Market | Volume | USD Volume | % |
---|---|---|---|
USDT | 43.6M | 43.6M | 60.8% |
USD | 10.8M | 10.8M | 15.1% |
BTC | 55 | 6.1M | 8.5% |
EUR | 4.7M | 5.4M | 7.5% |
USDC | 3.6M | 3.7M | 5.2% |
ETH | 304 | 1.2M | 1.7% |
GBP | 332.8K | 445.2K | 0.6% |
LTC | 3.8K | 360.3K | 0.5% |
BRL | 95.0K | 17.4K | 0.0% |
UAH | 429.9M | - | - |
1-10 of 15
Coinsamba Library Usage
Use the Coinsamba library to get this 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);
}