Binance
Volume by Market
| Market | Volume | USD Volume | % |
|---|---|---|---|
| ARS | 1.3B | 122.6T | 100.0% |
| USDT | 7.1B | 7.1B | 0.0% |
| USDC | 992.8M | 1.0B | 0.0% |
| BTC | 1.2K | 116.1M | 0.0% |
| EUR | 57.1M | 66.4M | 0.0% |
| ETH | 12.3K | 39.5M | 0.0% |
| BRL | 182.5M | 34.3M | 0.0% |
| MXN | 25.8M | 1.4M | 0.0% |
| SOL | 7.7K | 1.1M | 0.0% |
| COP | 781.5M | 204.5K | 0.0% |
1-10 of 26
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);
}