EXMO
Social Networks
Volume by Market
| Market | Volume | Volume in USD | % |
|---|---|---|---|
| USDT | 46.5M | 46.5M | 55.6% |
| USD | 19.2M | 19.2M | 23.0% |
| EUR | 7.0M | 8.2M | 9.9% |
| USDC | 6.5M | 6.8M | 8.2% |
| BTC | 19 | 1.7M | 2.1% |
| ETH | 345 | 1.0M | 1.2% |
| BRL | 259.5K | 49.0K | 0.1% |
| UAH | 487.5M | - | - |
| PLN | 6.1M | - | - |
| DAI | 655.7K | - | - |
1-10 of 12
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);
}