EXMOEXMO

Launch Year: 2017
Markets: 15
Pairs: 242
Assets: 104

Social Networks

Volume by Market
MarketVolumeUSD Volume%
USDT21.9M21.9M
46.7%
USD10.5M10.5M
22.5%
EUR4.7M5.5M
11.7%
BTC323.8M
8.0%
USDC2.9M2.9M
6.2%
ETH3011.4M
3.0%
GBP348.0K471.6K
1.0%
LTC3.6K416.3K
0.9%
BRL116.5K21.7K
0.0%
UAH390.7M-
-
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);
}