KuCoin
Volume by Market
| Market | Volume | Volume in USD | % |
|---|---|---|---|
| USDT | 701.7M | 701.1M | 91.3% |
| USDC | 54.2M | 56.3M | 7.3% |
| BTC | 100 | 6.4M | 0.8% |
| ETH | 1.5K | 2.8M | 0.4% |
| EUR | 1.3M | 1.5M | 0.2% |
| BRL | 768.1K | 149.6K | 0.0% |
| KCS | 161.1K | - | - |
| TRX | 75.6K | - | - |
| USD1 | 33.6K | - | - |
| USDG | 4.2K | - | - |
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);
}