KuCoinKuCoin

Launch Year: 2017
Markets: 10
Pairs: 985
Assets: 830

Social Networks

Volume by Market
MarketVolumeVolume in USD%
USDT1.5B1.5B
95.1%
USDC56.9M59.5M
3.7%
BTC16112.7M
0.8%
ETH1.5K3.8M
0.2%
EUR1.3M1.5M
0.1%
USDG8.1M-
-
TRX229.5K-
-
KCS132.8K-
-
USD176.8K-
-
DOGE2.7K-
-
1-10 of 10
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 { 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);
}