KuCoin
Volume by Market
| Market | Volume | USD Volume | % |
|---|---|---|---|
| USDT | 2.9B | 2.9B | 93.3% |
| USDC | 156.4M | 162.0M | 5.2% |
| BTC | 306 | 32.0M | 1.0% |
| ETH | 3.6K | 12.8M | 0.4% |
| EUR | 1.8M | 2.0M | 0.1% |
| BRL | 1.2M | 230.7K | 0.0% |
| USD1 | 4.7M | - | - |
| DAI | 1.9M | - | - |
| KCS | 247.7K | - | - |
| TRX | 92.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);
}