KuCoin
Volume by Market
Market | Volume | USD Volume | % |
---|---|---|---|
USDT | 1.5B | 1.5B | 94.2% |
USDC | 74.0M | 74.8M | 4.8% |
BTC | 84 | 9.8M | 0.6% |
ETH | 879 | 4.0M | 0.3% |
EUR | 1.9M | 2.2M | 0.1% |
BRL | 1.3M | 247.1K | 0.0% |
USD1 | 11.7M | - | - |
DAI | 985.9K | - | - |
KCS | 128.4K | - | - |
TRX | 18.3K | - | - |
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);
}