EXMOEXMO

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

Social Networks

Volume by Market
MarketVolumeVolume in USD%
USDT43.4M43.4M
52.5%
USD20.6M20.6M
24.9%
USDC7.8M8.2M
9.9%
EUR6.5M7.6M
9.2%
BTC261.7M
2.0%
ETH5961.1M
1.3%
BRL15229
0.0%
UAH443.1M-
-
PLN6.0M-
-
DAI719.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);
}