EXMO
Social Networks
Volume by Market
| Market | Volume | Volume in USD | % |
|---|---|---|---|
| USDT | 44.7M | 44.7M | 54.3% |
| USD | 18.1M | 18.1M | 22.0% |
| EUR | 6.4M | 7.4M | 9.0% |
| USDC | 6.8M | 7.1M | 8.6% |
| ETH | 874 | 2.7M | 3.3% |
| BTC | 19 | 1.8M | 2.2% |
| LTC | 6.3K | 513.8K | 0.6% |
| BRL | 187.3K | 34.8K | 0.0% |
| UAH | 377.3M | - | - |
| PLN | 5.1M | - | - |
1-10 of 13
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-connector2. 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);
}