KuCoinKuCoin

Launch Year: 2017
Markets: 12
Pairs: 1138
Assets: 941

Social Networks

Volume by Market
MarketVolumeVolume in USD%
USDT1.3B1.3B
94.9%
USDC54.8M56.5M
4.2%
BTC1137.6M
0.6%
ETH1.4K2.8M
0.2%
EUR804.7K932.3K
0.1%
BRL1.8M334.7K
0.0%
USDG3.8M-
-
DAI744.5K-
-
USD1418.6K-
-
KCS13.4K-
-
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 { 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);
}