KuCoin
Volume by Market
| Market | Volume | USD Volume | % |
|---|---|---|---|
| USDT | 1.9B | 1.9B | 95.9% |
| USDC | 59.5M | 61.1M | 3.0% |
| BTC | 141 | 15.8M | 0.8% |
| ETH | 778 | 3.1M | 0.2% |
| EUR | 1.5M | 1.7M | 0.1% |
| BRL | 534.9K | 99.3K | 0.0% |
| USD1 | 3.5M | - | - |
| DAI | 1.1M | - | - |
| KCS | 152.0K | - | - |
| TRX | 18.6K | - | - |
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);
}