KuCoin
Volume by Market
| Market | Volume | Volume in USD | % |
|---|---|---|---|
| USDT | 1.2B | 1.2B | 92.6% |
| USDC | 71.0M | 73.6M | 5.9% |
| BTC | 159 | 12.3M | 1.0% |
| ETH | 1.6K | 3.3M | 0.3% |
| EUR | 1.5M | 1.7M | 0.1% |
| BRL | 2.3M | 461.6K | 0.0% |
| USD1 | 517.7K | - | - |
| KCS | 124.9K | - | - |
| TRX | 9.1K | - | - |
| USDG | 4.1K | - | - |
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);
}