EXMO
Social Networks
Volume by Market
| Market | Volume | USD Volume | % |
|---|---|---|---|
| USDT | 49.3M | 49.4M | 51.2% |
| USD | 19.0M | 19.0M | 19.7% |
| EUR | 8.9M | 10.2M | 10.6% |
| USDC | 6.9M | 7.0M | 7.3% |
| BTC | 64 | 6.5M | 6.7% |
| ETH | 798 | 2.6M | 2.7% |
| GBP | 754.3K | 984.3K | 1.0% |
| LTC | 8.4K | 719.1K | 0.7% |
| BRL | 240.6K | 44.5K | 0.0% |
| UAH | 791.2M | - | - |
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);
}