EXMOEXMO

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

Social Networks

Volume by Market
MarketVolumeUSD Volume%
USDT66.5M66.5M
56.4%
USD21.7M21.7M
18.4%
EUR9.6M11.2M
9.5%
BTC747.1M
6.0%
USDC6.6M6.9M
5.8%
ETH8902.8M
2.4%
LTC8.8K882.0K
0.7%
GBP662.1K870.6K
0.7%
BRL301.4K56.7K
0.0%
UAH483.1M-
-
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);
}