EXMO
Social Networks
Volume by Quote
Market | Volume | Volume in USD | % |
---|---|---|---|
USDT | 35.5M | 35.5M | 64.3% |
USD | 8.1M | 8.1M | 14.7% |
EUR | 3.3M | 3.8M | 6.9% |
BTC | 36 | 3.4M | 6.2% |
USDC | 2.7M | 2.8M | 5.0% |
ETH | 593 | 1.0M | 1.9% |
GBP | 281.0K | 372.9K | 0.7% |
LTC | 1.9K | 159.0K | 0.3% |
BRL | 75.7K | 13.2K | 0.0% |
UAH | 335.9M | - | - |
1-10 of 14
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-connector
2. 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);
}