KuCoin
Volume by Market
| Market | Volume | Volume in USD | % |
|---|---|---|---|
| USDT | 2.8B | 2.8B | 89.7% |
| USDC | 292.5M | 302.8M | 9.6% |
| BTC | 128 | 11.7M | 0.4% |
| ETH | 1.7K | 5.3M | 0.2% |
| EUR | 2.4M | 2.8M | 0.1% |
| BRL | 3.3M | 600.9K | 0.0% |
| USD1 | 5.0M | - | - |
| DAI | 292.3K | - | - |
| USDG | 244.2K | - | - |
| KCS | 139.3K | - | - |
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);
}