EXMOEXMO

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

Social Networks

Volume by Market
MarketVolumeUSD Volume%
USDT64.5M64.5M
56.0%
USD21.4M21.4M
18.6%
EUR9.0M10.4M
9.1%
BTC747.2M
6.2%
USDC6.5M6.7M
5.8%
ETH1.0K3.2M
2.8%
GBP726.7K955.4K
0.8%
LTC7.9K762.5K
0.7%
BRL218.3K41.1K
0.0%
UAH555.9M-
-
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);
}