KuCoin
Volume by Market
| Market | Volume | Volume in USD | % |
|---|---|---|---|
| USDT | 1.0B | 1.0B | 90.6% |
| USDC | 79.5M | 84.4M | 7.6% |
| BTC | 202 | 13.1M | 1.2% |
| ETH | 2.0K | 3.9M | 0.4% |
| EUR | 2.9M | 3.4M | 0.3% |
| BRL | 452.8K | 89.0K | 0.0% |
| KCS | 158.3K | - | - |
| TRX | 72.2K | - | - |
| USD1 | 69.2K | - | - |
| USDG | 38.0K | - | - |
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-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);
}