KuCoin
Volume by Market
| Market | Volume | Volume in USD | % |
|---|---|---|---|
| USDT | 1.3B | 1.3B | 94.9% |
| USDC | 54.8M | 56.5M | 4.2% |
| BTC | 113 | 7.6M | 0.6% |
| ETH | 1.4K | 2.8M | 0.2% |
| EUR | 804.7K | 932.3K | 0.1% |
| BRL | 1.8M | 334.7K | 0.0% |
| USDG | 3.8M | - | - |
| DAI | 744.5K | - | - |
| USD1 | 418.6K | - | - |
| KCS | 13.4K | - | - |
1-10 of 12
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);
}