EXMOEXMO

Launch Year: 2017
Markets: 15
Pairs: 215
Assets: 100

Social Networks

Volume by Market
MarketVolumeVolume in USD%
USDT45.8M45.9M
54.0%
USD19.1M19.1M
22.5%
EUR7.2M8.4M
9.9%
USDC6.2M6.4M
7.6%
ETH7752.4M
2.8%
BTC111.1M
1.3%
LTC9.4K781.2K
0.9%
GBP537.0K716.8K
0.8%
BRL336.2K63.3K
0.1%
UAH338.6M-
-
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);
}