EXMOEXMO

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

Social Networks

Volume by Market
MarketVolumeUSD Volume%
USDT61.8M61.8M
55.2%
USD20.9M20.9M
18.7%
EUR9.1M10.5M
9.4%
BTC847.1M
6.4%
USDC6.6M6.9M
6.2%
ETH1.1K2.9M
2.6%
GBP699.5K914.1K
0.8%
LTC9.1K748.6K
0.7%
BRL256.7K47.3K
0.0%
UAH481.7M-
-
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);
}