KuCoinKuCoin

Launch Year: 2017
Markets: 11
Pairs: 1316
Assets: 1089

Social Networks

Volume by Market
MarketVolumeUSD Volume%
USDT1.2B1.2B
94.1%
USDC61.1M62.1M
4.8%
BTC708.1M
0.6%
ETH6983.1M
0.2%
EUR1.8M2.1M
0.2%
BRL748.6K141.2K
0.0%
USD112.8M-
-
DAI355.8K-
-
KCS119.3K-
-
TRX24.8K-
-
1-10 of 11
Coinsamba Library Usage
Use the Coinsamba library to get these data in your system

1. Select your package manager and install the library

npm install @coinsamba/js-exchanges-connector

2. Import the library

import { kucoin } from '@coinsamba/js-exchanges-connector'

3. Use the available methods

const exchange = new kucoin();

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