EXMO
Social Networks
Volume by Market
| Market | Volume | Volume in USD | % |
|---|---|---|---|
| USDT | 45.5M | 45.5M | 54.6% |
| USD | 18.1M | 18.1M | 21.7% |
| USDC | 8.6M | 9.0M | 10.8% |
| EUR | 6.9M | 8.1M | 9.7% |
| BTC | 25 | 1.7M | 2.0% |
| ETH | 498 | 992.8K | 1.2% |
| BRL | 152 | 29 | 0.0% |
| UAH | 388.4M | - | - |
| PLN | 3.4M | - | - |
| DAI | 679.7K | - | - |
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);
}