KuCoinKuCoin

Launch Year: 2017
Markets: 11
Pairs: 1380
Assets: 1134

Social Networks

Volume by Market
MarketVolumeUSD Volume%
USDT1.2B1.2B
95.1%
USDC47.7M48.0M
3.9%
BTC768.4M
0.7%
EUR2.4M2.8M
0.2%
ETH7872.0M
0.2%
BRL432.9K79.7K
0.0%
DAI430.1K-
-
USD1294.9K-
-
DOGE12.7K-
-
TRX4.7K-
-
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);
}