KuCoin
Volume by Market
| Market | Volume | Volume in USD | % |
|---|---|---|---|
| USDT | 1.0B | 1.0B | 91.8% |
| USDC | 70.8M | 74.6M | 6.6% |
| BTC | 210 | 12.9M | 1.1% |
| EUR | 2.2M | 2.5M | 0.2% |
| ETH | 1.3K | 2.2M | 0.2% |
| BRL | 1.8M | 335.8K | 0.0% |
| USD1 | 374.0K | - | - |
| USDG | 91.4K | - | - |
| KCS | 52.1K | - | - |
| 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);
}