EXMO
Social Networks
Volume by Market
Market | Volume | USD Volume | % |
---|---|---|---|
USDT | 29.8M | 29.8M | 54.7% |
USD | 10.6M | 10.6M | 19.4% |
EUR | 4.5M | 5.3M | 9.8% |
BTC | 33 | 3.8M | 7.1% |
USDC | 2.6M | 2.7M | 4.9% |
ETH | 299 | 1.3M | 2.5% |
GBP | 347.6K | 472.3K | 0.9% |
LTC | 3.7K | 419.4K | 0.8% |
BRL | 90.1K | 16.9K | 0.0% |
UAH | 395.2M | - | - |
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);
}