KuCoin
Volume by Market
| Market | Volume | Volume in USD | % |
|---|---|---|---|
| USDT | 1.6B | 1.6B | 94.8% |
| USDC | 58.6M | 61.8M | 3.7% |
| BTC | 163 | 13.8M | 0.8% |
| ETH | 3.4K | 9.2M | 0.6% |
| EUR | 1.5M | 1.7M | 0.1% |
| USDG | 7.5M | - | - |
| KCS | 139.7K | - | - |
| TRX | 48.8K | - | - |
| USD1 | 36.0K | - | - |
| DOGE | 2.7K | - | - |
1-10 of 10
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);
}