KuCoin
Volume by Market
| Market | Volume | Volume in USD | % |
|---|---|---|---|
| USDT | 671.1M | 670.6M | 93.3% |
| USDC | 33.3M | 34.7M | 4.8% |
| BTC | 126 | 8.0M | 1.1% |
| ETH | 2.0K | 3.8M | 0.5% |
| EUR | 1.3M | 1.5M | 0.2% |
| BRL | 1.0M | 192.2K | 0.0% |
| KCS | 146.4K | - | - |
| TRX | 47.2K | - | - |
| USD1 | 26.6K | - | - |
| USDG | 2.3K | - | - |
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);
}