EXMOEXMO

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

Social Networks

Volume by Market
MarketVolumeUSD Volume%
USDT44.4M44.4M
63.7%
USD10.2M10.2M
14.7%
BTC455.3M
7.6%
EUR4.5M5.2M
7.5%
USDC2.4M2.5M
3.6%
ETH2911.2M
1.8%
GBP345.4K459.9K
0.7%
LTC3.9K394.6K
0.6%
BRL82.7K15.1K
0.0%
UAH399.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);
}