EXMO
Social Networks
Volume by Market
| Market | Volume | Volume in USD | % |
|---|---|---|---|
| USDT | 47.2M | 47.3M | 57.7% |
| USD | 17.0M | 17.0M | 20.7% |
| EUR | 6.2M | 7.3M | 8.9% |
| USDC | 6.6M | 6.8M | 8.3% |
| ETH | 631 | 2.0M | 2.4% |
| BTC | 11 | 1.1M | 1.3% |
| LTC | 5.1K | 414.5K | 0.5% |
| BRL | 303.3K | 55.3K | 0.1% |
| UAH | 319.8M | - | - |
| PLN | 4.8M | - | - |
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);
}