EXMOEXMO

Launch Year: 2017
Markets: 15
Pairs: 241
Assets: 103

Social Networks

Volume by Market
MarketVolumeUSD Volume%
USDT29.8M29.8M
54.7%
USD10.6M10.6M
19.4%
EUR4.5M5.3M
9.8%
BTC333.8M
7.1%
USDC2.6M2.7M
4.9%
ETH2991.3M
2.5%
GBP347.6K472.3K
0.9%
LTC3.7K419.4K
0.8%
BRL90.1K16.9K
0.0%
UAH395.2M-
-
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);
}