EXMOEXMO

Launch Year: 2017
Markets: 15
Pairs: 237
Assets: 101

Social Networks

Volume by Market
MarketVolumeUSD Volume%
USDT49.3M49.4M
51.2%
USD19.0M19.0M
19.7%
EUR8.9M10.2M
10.6%
USDC6.9M7.0M
7.3%
BTC646.5M
6.7%
ETH7982.6M
2.7%
GBP754.3K984.3K
1.0%
LTC8.4K719.1K
0.7%
BRL240.6K44.5K
0.0%
UAH791.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-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);
}