EXMOEXMO

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

Social Networks

Volume by Market
MarketVolumeUSD Volume%
USDT43.6M43.6M
60.8%
USD10.8M10.8M
15.1%
BTC556.1M
8.5%
EUR4.7M5.4M
7.5%
USDC3.6M3.7M
5.2%
ETH3041.2M
1.7%
GBP332.8K445.2K
0.6%
LTC3.8K360.3K
0.5%
BRL95.0K17.4K
0.0%
UAH429.9M-
-
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);
}