EXMO
Social Networks
Volume by Market
| Market | Volume | Volume in USD | % |
|---|---|---|---|
| USDT | 42.1M | 42.1M | 51.3% |
| USD | 20.0M | 20.0M | 24.3% |
| USDC | 8.4M | 8.9M | 10.8% |
| EUR | 7.3M | 8.4M | 10.2% |
| BTC | 26 | 1.8M | 2.2% |
| ETH | 494 | 985.2K | 1.2% |
| BRL | 152 | 29 | 0.0% |
| UAH | 428.5M | - | - |
| PLN | 5.6M | - | - |
| DAI | 608.8K | - | - |
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);
}