KuCoin
Volume by Market
Market | Volume | USD Volume | % |
---|---|---|---|
USDT | 1.2B | 1.2B | 95.1% |
USDC | 47.7M | 48.0M | 3.9% |
BTC | 76 | 8.4M | 0.7% |
EUR | 2.4M | 2.8M | 0.2% |
ETH | 787 | 2.0M | 0.2% |
BRL | 432.9K | 79.7K | 0.0% |
DAI | 430.1K | - | - |
USD1 | 294.9K | - | - |
DOGE | 12.7K | - | - |
TRX | 4.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);
}