EXMO
Social Networks
Volume by Market
| Market | Volume | Volume in USD | % |
|---|---|---|---|
| USDT | 45.9M | 45.9M | 54.2% |
| USD | 20.5M | 20.5M | 24.2% |
| EUR | 8.1M | 9.4M | 11.1% |
| USDC | 6.3M | 6.6M | 7.8% |
| BTC | 17 | 1.3M | 1.6% |
| ETH | 400 | 928.9K | 1.1% |
| BRL | 152 | 30 | 0.0% |
| UAH | 414.3M | - | - |
| PLN | 5.7M | - | - |
| DAI | 621.0K | - | - |
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);
}