EXMOEXMO

Launch Year: 2017
Markets: 12
Pairs: 187
Assets: 91

Social Networks

Volume by Market
MarketVolumeVolume in USD%
USDT45.5M45.5M
54.6%
USD18.1M18.1M
21.7%
USDC8.6M9.0M
10.8%
EUR6.9M8.1M
9.7%
BTC251.7M
2.0%
ETH498992.8K
1.2%
BRL15229
0.0%
UAH388.4M-
-
PLN3.4M-
-
DAI679.7K-
-
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);
}