EXMOEXMO

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

Social Networks

Volume by Market
MarketVolumeVolume in USD%
USDT46.6M46.6M
53.8%
USD19.7M19.7M
22.8%
EUR7.4M8.7M
10.1%
USDC8.3M8.7M
10.1%
BTC231.9M
2.2%
ETH397917.4K
1.1%
BRL15231
0.0%
UAH423.6M-
-
PLN5.4M-
-
DAI580.4K-
-
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);
}