KuCoin
Volume by Market
Market | Volume | USD Volume | % |
---|---|---|---|
USDT | 1.2B | 1.2B | 94.1% |
USDC | 61.1M | 62.1M | 4.8% |
BTC | 70 | 8.1M | 0.6% |
ETH | 698 | 3.1M | 0.2% |
EUR | 1.8M | 2.1M | 0.2% |
BRL | 748.6K | 141.2K | 0.0% |
USD1 | 12.8M | - | - |
DAI | 355.8K | - | - |
KCS | 119.3K | - | - |
TRX | 24.8K | - | - |
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);
}