Binance
Volume by Market
| Market | Volume | USD Volume | % |
|---|---|---|---|
| ARS | 3.9B | 408.5T | 100.0% |
| USDT | 15.3B | 15.3B | 0.0% |
| USDC | 2.0B | 2.1B | 0.0% |
| BTC | 1.9K | 204.1M | 0.0% |
| EUR | 88.6M | 102.5M | 0.0% |
| BRL | 487.4M | 91.9M | 0.0% |
| ETH | 8.3K | 29.5M | 0.0% |
| SOL | 6.1K | 1.0M | 0.0% |
| MXN | 18.3M | 993.2K | 0.0% |
| COP | 1.4B | 352.5K | 0.0% |
1-10 of 25
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);
}