EXMO
Social Networks
Volume by Market
Market | Volume | USD Volume | % |
---|---|---|---|
USDT | 44.4M | 44.4M | 63.7% |
USD | 10.2M | 10.2M | 14.7% |
BTC | 45 | 5.3M | 7.6% |
EUR | 4.5M | 5.2M | 7.5% |
USDC | 2.4M | 2.5M | 3.6% |
ETH | 291 | 1.2M | 1.8% |
GBP | 345.4K | 459.9K | 0.7% |
LTC | 3.9K | 394.6K | 0.6% |
BRL | 82.7K | 15.1K | 0.0% |
UAH | 399.5M | - | - |
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);
}