Binance
Volume by Market
| Market | Volume | Volume in USD | % |
|---|---|---|---|
| ARS | 2.5B | 172.2T | 100.0% |
| USDT | 6.6B | 6.6B | 0.0% |
| USDC | 1.1B | 1.1B | 0.0% |
| BTC | 1.4K | 95.0M | 0.0% |
| BRL | 347.2M | 66.2M | 0.0% |
| EUR | 50.1M | 57.8M | 0.0% |
| USD | 44.1M | 44.1M | 0.0% |
| ETH | 17.8K | 36.8M | 0.0% |
| SOL | 50.4K | 4.5M | 0.0% |
| BNB | 3.7K | 2.3M | 0.0% |
1-10 of 27
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);
}