KuCoin
Volume by Market
| Market | Volume | Volume in USD | % |
|---|---|---|---|
| USDT | 2.4B | 2.4B | 89.7% |
| USDC | 237.3M | 251.8M | 9.5% |
| BTC | 205 | 12.9M | 0.5% |
| EUR | 3.4M | 4.0M | 0.2% |
| ETH | 2.0K | 3.5M | 0.1% |
| BRL | 1.9M | 379.2K | 0.0% |
| USD1 | 598.5K | - | - |
| USDG | 471.9K | - | - |
| KCS | 180.0K | - | - |
| TRX | 9.9K | - | - |
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);
}