KuCoin
Volume by Market
| Market | Volume | Volume in USD | % |
|---|---|---|---|
| USDT | 1.3B | 1.3B | 93.3% |
| USDC | 70.9M | 74.7M | 5.3% |
| BTC | 204 | 13.0M | 0.9% |
| ETH | 2.5K | 4.2M | 0.3% |
| EUR | 2.1M | 2.5M | 0.2% |
| BRL | 1.6M | 309.2K | 0.0% |
| USD1 | 409.4K | - | - |
| USDG | 116.8K | - | - |
| KCS | 75.9K | - | - |
| TRX | 40.3K | - | - |
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);
}