EXMO
Social Networks
Volume by Market
| Market | Volume | USD Volume | % |
|---|---|---|---|
| USDT | 64.5M | 64.5M | 56.0% |
| USD | 21.4M | 21.4M | 18.6% |
| EUR | 9.0M | 10.4M | 9.1% |
| BTC | 74 | 7.2M | 6.2% |
| USDC | 6.5M | 6.7M | 5.8% |
| ETH | 1.0K | 3.2M | 2.8% |
| GBP | 726.7K | 955.4K | 0.8% |
| LTC | 7.9K | 762.5K | 0.7% |
| BRL | 218.3K | 41.1K | 0.0% |
| UAH | 555.9M | - | - |
1-10 of 15
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);
}