EXMOEXMO

Launch Year: 2017
Markets: 11
Pairs: 184
Assets: 90

Social Networks

Volume by Market
MarketVolumeVolume in USD%
USDT35.7M35.7M
51.9%
USD20.5M20.5M
29.8%
USDC7.6M7.9M
11.5%
EUR1.9M2.1M
3.1%
BTC251.6M
2.4%
ETH544959.2K
1.4%
BRL71
0.0%
UAH481.8M-
-
DAI627.6K-
-
USDQ294.7K-
-
1-10 of 11
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);
}