KuCoin
Volume by Market
Market | Volume | USD Volume | % |
---|---|---|---|
USDT | 4.3B | 4.3B | 95.4% |
USDC | 169.7M | 174.8M | 3.9% |
BTC | 157 | 17.3M | 0.4% |
ETH | 2.3K | 8.9M | 0.2% |
EUR | 4.3M | 5.0M | 0.1% |
BRL | 2.1M | 384.3K | 0.0% |
USD1 | 4.8M | - | - |
DAI | 664.4K | - | - |
KCS | 179.4K | - | - |
TRX | 38.5K | - | - |
1-10 of 11
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);
}