KuCoin
Volume by Market
| Market | Volume | Volume in USD | % |
|---|---|---|---|
| USDT | 2.9B | 2.9B | 96.3% |
| USDC | 89.5M | 92.9M | 3.0% |
| BTC | 205 | 13.7M | 0.4% |
| EUR | 2.5M | 2.9M | 0.1% |
| ETH | 1.4K | 2.8M | 0.1% |
| BRL | 3.7M | 711.1K | 0.0% |
| USD1 | 3.2M | - | - |
| USDG | 1.6M | - | - |
| DAI | 363.8K | - | - |
| TRX | 68.4K | - | - |
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);
}