EXMOEXMO

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

Social Networks

Volume by Market
MarketVolumeUSD Volume%
USDT66.9M66.9M
57.2%
USD21.0M21.0M
17.9%
EUR9.4M10.9M
9.3%
USDC6.8M7.0M
6.0%
BTC616.8M
5.8%
ETH7202.8M
2.4%
GBP696.1K915.7K
0.8%
LTC7.8K740.5K
0.6%
BRL228.0K42.3K
0.0%
UAH742.2M-
-
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);
}