Binance
Volume by Market
| Market | Volume | Volume in USD | % |
|---|---|---|---|
| USDT | 6.8B | 6.8B | 78.7% |
| USDC | 1.4B | 1.5B | 17.2% |
| BTC | 1.6K | 145.9M | 1.7% |
| BRL | 571.2M | 105.2M | 1.2% |
| EUR | 71.0M | 82.7M | 1.0% |
| ETH | 4.1K | 12.9M | 0.1% |
| USD | 2.0M | 2.0M | 0.0% |
| MXN | 21.2M | 1.2M | 0.0% |
| ARS | 1.6B | 1.1M | 0.0% |
| SOL | 8.1K | 1.1M | 0.0% |
1-10 of 28
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 { binance } from '@coinsamba/js-exchanges-connector'3. Use the available methods
const exchange = new binance();
// 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);
}