EXMOEXMO

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

Social Networks

Volume by Market
MarketVolumeVolume in USD%
USDT45.4M45.3M
53.0%
USD20.1M20.1M
23.5%
USDC8.2M8.5M
10.0%
EUR7.3M8.5M
10.0%
BTC262.0M
2.3%
ETH4921.0M
1.2%
BRL15230
0.0%
UAH332.5M-
-
PLN6.4M-
-
DAI585.5K-
-
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);
}