EXMOEXMO

Launch Year: 2017
Markets: 12
Pairs: 188
Assets: 92

Social Networks

Volume by Market
MarketVolumeVolume in USD%
USDT43.1M43.2M
52.5%
USD19.7M19.7M
24.0%
EUR7.2M8.5M
10.3%
USDC8.1M8.4M
10.2%
BTC181.4M
1.7%
ETH4521.1M
1.3%
BRL15230
0.0%
UAH483.2M-
-
PLN5.5M-
-
DAI697.8K-
-
1-10 of 12
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);
}