KuCoin
Volume by Market
| Market | Volume | Volume in USD | % |
|---|---|---|---|
| USDT | 1.0B | 1.0B | 91.9% |
| USDC | 70.5M | 74.3M | 6.6% |
| BTC | 210 | 12.9M | 1.1% |
| EUR | 2.1M | 2.4M | 0.2% |
| ETH | 1.2K | 2.1M | 0.2% |
| BRL | 1.8M | 333.5K | 0.0% |
| USD1 | 376.8K | - | - |
| USDG | 91.7K | - | - |
| KCS | 52.2K | - | - |
| TRX | 7.7K | - | - |
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);
}