EXMO
Social Networks
Volume by Market
| Market | Volume | Volume in USD | % |
|---|---|---|---|
| USDT | 45.8M | 45.9M | 54.0% |
| USD | 19.1M | 19.1M | 22.5% |
| EUR | 7.2M | 8.4M | 9.9% |
| USDC | 6.2M | 6.4M | 7.6% |
| ETH | 775 | 2.4M | 2.8% |
| BTC | 11 | 1.1M | 1.3% |
| LTC | 9.4K | 781.2K | 0.9% |
| GBP | 537.0K | 716.8K | 0.8% |
| BRL | 336.2K | 63.3K | 0.1% |
| UAH | 338.6M | - | - |
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-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);
}