EXMO
Social Networks
Volume by Market
| Market | Volume | USD Volume | % |
|---|---|---|---|
| USDT | 66.0M | 66.1M | 57.7% |
| USD | 19.6M | 19.6M | 17.1% |
| EUR | 9.2M | 10.7M | 9.3% |
| BTC | 71 | 6.9M | 6.0% |
| USDC | 6.5M | 6.8M | 6.0% |
| ETH | 884 | 2.8M | 2.4% |
| GBP | 676.1K | 890.4K | 0.8% |
| LTC | 8.5K | 872.2K | 0.8% |
| BRL | 268.4K | 50.4K | 0.0% |
| UAH | 468.5M | - | - |
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);
}