KuCoin
Volume by Market
| Market | Volume | Volume in USD | % |
|---|---|---|---|
| USDT | 2.5B | 2.5B | 96.9% |
| USDC | 60.0M | 62.7M | 2.4% |
| BTC | 106 | 9.6M | 0.4% |
| ETH | 1.5K | 4.6M | 0.2% |
| EUR | 2.7M | 3.1M | 0.1% |
| BRL | 2.9M | 541.9K | 0.0% |
| DAI | 2.8M | - | - |
| USD1 | 890.2K | - | - |
| TRX | 28.5K | - | - |
| USDG | 13.5K | - | - |
1-10 of 12
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);
}