KuCoin
Volume by Market
| Market | Volume | Volume in USD | % |
|---|---|---|---|
| USDT | 1.8B | 1.8B | 93.2% |
| USDC | 111.0M | 116.0M | 6.1% |
| BTC | 122 | 9.6M | 0.5% |
| ETH | 841 | 2.0M | 0.1% |
| EUR | 1.6M | 1.8M | 0.1% |
| BRL | 2.3M | 454.0K | 0.0% |
| USD1 | 829.8K | - | - |
| USDG | 134.1K | - | - |
| TRX | 34.5K | - | - |
| KCS | 5.5K | - | - |
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);
}