KuCoinKuCoin

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

Social Networks

Volume by Market
MarketVolumeVolume in USD%
USDT1.5B1.5B
95.8%
USDC47.1M49.3M
3.2%
BTC15412.2M
0.8%
ETH1.1K2.8M
0.2%
EUR1.5M1.7M
0.1%
USDG8.4M-
-
TRX216.9K-
-
KCS140.0K-
-
USD179.4K-
-
DOGE1.5K-
-
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);
}