EXMO
Social Networks
Volume by Market
Market | Volume | USD Volume | % |
---|---|---|---|
USDT | 21.9M | 21.9M | 46.7% |
USD | 10.5M | 10.5M | 22.5% |
EUR | 4.7M | 5.5M | 11.7% |
BTC | 32 | 3.8M | 8.0% |
USDC | 2.9M | 2.9M | 6.2% |
ETH | 301 | 1.4M | 3.0% |
GBP | 348.0K | 471.6K | 1.0% |
LTC | 3.6K | 416.3K | 0.9% |
BRL | 116.5K | 21.7K | 0.0% |
UAH | 390.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);
}