EXMOEXMO

Launch Year: 2017
Markets: 15
Pairs: 240
Assets: 101

Social Networks

Volume by Market
MarketVolumeUSD Volume%
USDT75.5M75.5M
59.9%
USD21.3M21.3M
16.9%
EUR8.6M9.9M
7.9%
USDC7.2M7.6M
6.0%
BTC787.2M
5.7%
ETH9973.0M
2.4%
LTC8.9K822.0K
0.7%
GBP603.7K789.1K
0.6%
BRL251.0K47.0K
0.0%
UAH542.7M-
-
1-10 of 15
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);
}