EXMOEXMO

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

Social Networks

Volume by Market
MarketVolumeUSD Volume%
USDT22.9M22.9M
47.8%
USD10.6M10.6M
22.0%
EUR4.6M5.4M
11.3%
BTC333.9M
8.1%
USDC2.8M2.9M
6.0%
ETH3081.4M
3.0%
GBP349.6K475.0K
1.0%
LTC3.6K410.1K
0.9%
BRL106.1K19.7K
0.0%
UAH392.9M-
-
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);
}