EXMO
Social Networks
Volume by Market
| Market | Volume | Volume in USD | % |
|---|---|---|---|
| USDT | 39.6M | 39.6M | 49.1% |
| USD | 20.9M | 20.9M | 25.9% |
| USDC | 8.6M | 9.1M | 11.2% |
| EUR | 7.3M | 8.5M | 10.5% |
| BTC | 23 | 1.6M | 2.0% |
| ETH | 451 | 974.8K | 1.2% |
| BRL | 152 | 28 | 0.0% |
| UAH | 436.0M | - | - |
| PLN | 6.0M | - | - |
| DAI | 698.6K | - | - |
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);
}