EXMO
Social Networks
Volume by Market
| Market | Volume | Volume in USD | % |
|---|---|---|---|
| USDT | 43.1M | 43.2M | 52.5% |
| USD | 19.7M | 19.7M | 24.0% |
| EUR | 7.2M | 8.5M | 10.3% |
| USDC | 8.1M | 8.4M | 10.2% |
| BTC | 18 | 1.4M | 1.7% |
| ETH | 452 | 1.1M | 1.3% |
| BRL | 152 | 30 | 0.0% |
| UAH | 483.2M | - | - |
| PLN | 5.5M | - | - |
| DAI | 697.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);
}