EXMOEXMO

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

Social Networks

Volume by Market
MarketVolumeUSD Volume%
USD8.4M8.4M
35.2%
USDT7.5M7.5M
31.1%
EUR3.2M3.8M
15.8%
BTC161.8M
7.6%
ETH4011.0M
4.2%
USDC883.4K886.5K
3.7%
GBP298.0K405.4K
1.7%
LTC1.9K161.9K
0.7%
BRL70.9K13.0K
0.1%
UAH390.6M-
-
1-10 of 15
Coinsamba Library Usage
Use the Coinsamba library to get these 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);
}