EXMO
Social Networks
Volume by Market
Market | Volume | USD Volume | % |
---|---|---|---|
USDT | 22.9M | 22.9M | 47.8% |
USD | 10.6M | 10.6M | 22.0% |
EUR | 4.6M | 5.4M | 11.3% |
BTC | 33 | 3.9M | 8.1% |
USDC | 2.8M | 2.9M | 6.0% |
ETH | 308 | 1.4M | 3.0% |
GBP | 349.6K | 475.0K | 1.0% |
LTC | 3.6K | 410.1K | 0.9% |
BRL | 106.1K | 19.7K | 0.0% |
UAH | 392.9M | - | - |
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);
}