EXMOEXMO

Launch Year: 2017
Markets: 15
Pairs: 215
Assets: 100

Social Networks

Volume by Market
MarketVolumeUSD Volume%
USDT63.0M63.1M
58.3%
USD22.1M22.1M
20.4%
EUR9.3M10.8M
10.0%
USDC6.6M6.9M
6.3%
BTC191.8M
1.7%
ETH5611.7M
1.6%
GBP726.8K961.8K
0.9%
LTC9.3K815.2K
0.8%
BRL437.1K81.5K
0.1%
UAH482.3M-
-
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);
}