EXMO
Social Networks
Volume by Market
| Market | Volume | USD Volume | % |
|---|---|---|---|
| USDT | 66.9M | 66.9M | 57.2% |
| USD | 21.0M | 21.0M | 17.9% |
| EUR | 9.4M | 10.9M | 9.3% |
| USDC | 6.8M | 7.0M | 6.0% |
| BTC | 61 | 6.8M | 5.8% |
| ETH | 720 | 2.8M | 2.4% |
| GBP | 696.1K | 915.7K | 0.8% |
| LTC | 7.8K | 740.5K | 0.6% |
| BRL | 228.0K | 42.3K | 0.0% |
| UAH | 742.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);
}