KuCoin
Volume by Market
| Market | Volume | USD Volume | % |
|---|---|---|---|
| USDT | 6.4B | 6.4B | 95.8% |
| USDC | 232.3M | 242.3M | 3.6% |
| BTC | 190 | 18.3M | 0.3% |
| EUR | 7.3M | 8.5M | 0.1% |
| ETH | 2.6K | 8.1M | 0.1% |
| BRL | 4.1M | 771.7K | 0.0% |
| USD1 | 4.9M | - | - |
| DAI | 2.5M | - | - |
| KCS | 279.1K | - | - |
| TRX | 109.4K | - | - |
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);
}