EXMOEXMO

Launch Year: 2017
Markets: 14
Pairs: 250
Assets: 102

Social Networks

Volume by Quote

MarketVolumeVolume in USD%
USDT35.5M35.5M
64.3%
USD8.1M8.1M
14.7%
EUR3.3M3.8M
6.9%
BTC363.4M
6.2%
USDC2.7M2.8M
5.0%
ETH5931.0M
1.9%
GBP281.0K372.9K
0.7%
LTC1.9K159.0K
0.3%
BRL75.7K13.2K
0.0%
UAH335.9M-
-
1-10 of 14

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);
}