KuCoin
Volume by Market
| Market | Volume | Volume in USD | % |
|---|---|---|---|
| USDT | 1.4B | 1.4B | 94.4% |
| USDC | 65.5M | 68.9M | 4.7% |
| BTC | 108 | 8.8M | 0.6% |
| ETH | 1.3K | 3.0M | 0.2% |
| EUR | 1.6M | 1.9M | 0.1% |
| BRL | 1.7M | 346.7K | 0.0% |
| USD1 | 594.0K | - | - |
| KCS | 49.9K | - | - |
| USDG | 6.9K | - | - |
| TRX | 4.0K | - | - |
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);
}