EXMOEXMO

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

Social Networks

Volume by Market
MarketVolumeVolume in USD%
USDT42.5M42.5M
49.9%
USD22.6M22.6M
26.6%
USDC8.4M8.8M
10.4%
EUR7.5M8.8M
10.3%
BTC201.5M
1.8%
ETH390881.5K
1.0%
BRL15230
0.0%
UAH447.9M-
-
PLN6.8M-
-
DAI697.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);
}