KuCoin
Volume by Market
| Market | Volume | Volume in USD | % |
|---|---|---|---|
| USDT | 1.6B | 1.6B | 93.9% |
| USDC | 78.9M | 83.2M | 5.0% |
| BTC | 154 | 12.4M | 0.7% |
| ETH | 2.3K | 5.2M | 0.3% |
| EUR | 1.2M | 1.4M | 0.1% |
| BRL | 1.9M | 380.3K | 0.0% |
| USD1 | 633.7K | - | - |
| KCS | 65.0K | - | - |
| USDG | 10.6K | - | - |
| TRX | 2.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);
}