EXMO
Social Networks
Volume by Market
| Market | Volume | USD Volume | % |
|---|---|---|---|
| USDT | 66.5M | 66.5M | 56.4% |
| USD | 21.7M | 21.7M | 18.4% |
| EUR | 9.6M | 11.2M | 9.5% |
| BTC | 74 | 7.1M | 6.0% |
| USDC | 6.6M | 6.9M | 5.8% |
| ETH | 890 | 2.8M | 2.4% |
| LTC | 8.8K | 882.0K | 0.7% |
| GBP | 662.1K | 870.6K | 0.7% |
| BRL | 301.4K | 56.7K | 0.0% |
| UAH | 483.1M | - | - |
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);
}