EXMO
Social Networks
Volume by Market
| Market | Volume | USD Volume | % |
|---|---|---|---|
| USD | 20.9M | 20.9M | 39.0% |
| EUR | 8.7M | 10.1M | 18.8% |
| BTC | 68 | 7.1M | 13.2% |
| USDC | 6.4M | 6.5M | 12.2% |
| USDT | 4.4M | 4.4M | 8.2% |
| ETH | 827 | 2.8M | 5.3% |
| GBP | 736.2K | 967.1K | 1.8% |
| LTC | 7.1K | 709.5K | 1.3% |
| BRL | 245.9K | 46.5K | 0.1% |
| UAH | 501.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);
}