EXMOEXMO

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

Social Networks

Volume by Market
MarketVolumeUSD Volume%
USDT66.0M66.1M
57.7%
USD19.6M19.6M
17.1%
EUR9.2M10.7M
9.3%
BTC716.9M
6.0%
USDC6.5M6.8M
6.0%
ETH8842.8M
2.4%
GBP676.1K890.4K
0.8%
LTC8.5K872.2K
0.8%
BRL268.4K50.4K
0.0%
UAH468.5M-
-
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);
}