EXMOEXMO

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

Social Networks

Volume by Market
MarketVolumeUSD Volume%
USDT58.2M58.1M
72.3%
USD8.8M8.8M
11.0%
BTC485.8M
7.2%
EUR3.6M4.3M
5.3%
USDC1.5M1.5M
1.8%
ETH4461.3M
1.7%
GBP325.6K440.5K
0.5%
LTC1.8K177.7K
0.2%
BRL86.6K15.6K
0.0%
UAH412.7M-
-
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);
}