KuCoin
Volume by Market
| Market | Volume | USD Volume | % |
|---|---|---|---|
| USDT | 6.4B | 6.4B | 95.9% |
| USDC | 230.3M | 237.2M | 3.6% |
| BTC | 240 | 24.6M | 0.4% |
| ETH | 1.6K | 5.6M | 0.1% |
| EUR | 3.9M | 4.5M | 0.1% |
| BRL | 2.7M | 508.4K | 0.0% |
| USD1 | 5.3M | - | - |
| DAI | 2.2M | - | - |
| KCS | 219.9K | - | - |
| TRX | 153.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);
}