EXMO
Social Networks
Volume by Market
| Market | Volume | Volume in USD | % |
|---|---|---|---|
| USDT | 35.7M | 35.7M | 51.9% |
| USD | 20.5M | 20.5M | 29.8% |
| USDC | 7.6M | 7.9M | 11.5% |
| EUR | 1.9M | 2.1M | 3.1% |
| BTC | 25 | 1.6M | 2.4% |
| ETH | 544 | 959.2K | 1.4% |
| BRL | 7 | 1 | 0.0% |
| UAH | 481.8M | - | - |
| DAI | 627.6K | - | - |
| USDQ | 294.7K | - | - |
1-10 of 11
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);
}