EXMOEXMO

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

Social Networks

Volume by Market
MarketVolumeUSD Volume%
USD20.9M20.9M
39.0%
EUR8.7M10.1M
18.8%
BTC687.1M
13.2%
USDC6.4M6.5M
12.2%
USDT4.4M4.4M
8.2%
ETH8272.8M
5.3%
GBP736.2K967.1K
1.8%
LTC7.1K709.5K
1.3%
BRL245.9K46.5K
0.1%
UAH501.9M-
-
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);
}