KuCoin
Volume by Market
Market | Volume | USD Volume | % |
---|---|---|---|
USDT | 2.2B | 2.2B | 95.2% |
USDC | 93.1M | 92.3M | 3.9% |
BTC | 109 | 12.8M | 0.5% |
ETH | 1.5K | 4.3M | 0.2% |
EUR | 3.0M | 3.6M | 0.2% |
BRL | 733.4K | 132.0K | 0.0% |
DAI | 766.3K | - | - |
USD1 | 378.5K | - | - |
KCS | 152.0K | - | - |
TRX | 27.2K | - | - |
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);
}