EXMOEXMO

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

Social Networks

Volume by Market
MarketVolumeVolume in USD%
USDT45.9M45.9M
54.2%
USD20.5M20.5M
24.2%
EUR8.1M9.4M
11.1%
USDC6.3M6.6M
7.8%
BTC171.3M
1.6%
ETH400928.9K
1.1%
BRL15230
0.0%
UAH414.3M-
-
PLN5.7M-
-
DAI621.0K-
-
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);
}