KuCoin
Volume by Market
| Market | Volume | USD Volume | % |
|---|---|---|---|
| USDT | 2.5B | 2.5B | 95.3% |
| USDC | 102.7M | 107.6M | 4.1% |
| BTC | 110 | 10.1M | 0.4% |
| EUR | 3.1M | 3.5M | 0.1% |
| ETH | 532 | 1.6M | 0.1% |
| BRL | 2.5M | 466.3K | 0.0% |
| USD1 | 4.9M | - | - |
| KCS | 363.2K | - | - |
| DAI | 209.9K | - | - |
| TRX | 46.6K | - | - |
1-10 of 12
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-connector2. 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);
}