EXMO
Social Networks
Volume by Market
Market | Volume | USD Volume | % |
---|---|---|---|
USDT | 58.2M | 58.1M | 72.3% |
USD | 8.8M | 8.8M | 11.0% |
BTC | 48 | 5.8M | 7.2% |
EUR | 3.6M | 4.3M | 5.3% |
USDC | 1.5M | 1.5M | 1.8% |
ETH | 446 | 1.3M | 1.7% |
GBP | 325.6K | 440.5K | 0.5% |
LTC | 1.8K | 177.7K | 0.2% |
BRL | 86.6K | 15.6K | 0.0% |
UAH | 412.7M | - | - |
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);
}