EXMOEXMO

Launch Year: 2017
Markets: 12
Pairs: 188
Assets: 92

Social Networks

Volume by Market
MarketVolumeVolume in USD%
USDT42.1M42.1M
51.3%
USD20.0M20.0M
24.3%
USDC8.4M8.9M
10.8%
EUR7.3M8.4M
10.2%
BTC261.8M
2.2%
ETH494985.2K
1.2%
BRL15229
0.0%
UAH428.5M-
-
PLN5.6M-
-
DAI608.8K-
-
1-10 of 12
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);
}