Binance
Volume by Market
Market | Volume | USD Volume | % |
---|---|---|---|
ARS | 4.3B | 502.5T | 100.0% |
USDT | 17.8B | 17.8B | 0.0% |
USDC | 3.5B | 3.5B | 0.0% |
BTC | 2.9K | 344.7M | 0.0% |
EUR | 187.7M | 220.7M | 0.0% |
BRL | 553.3M | 99.1M | 0.0% |
ETH | 12.9K | 38.2M | 0.0% |
BNB | 12.1K | 8.4M | 0.0% |
SOL | 23.4K | 3.8M | 0.0% |
MXN | 32.5M | 1.7M | 0.0% |
1-10 of 25
Coinsamba Library Usage
Use the Coinsamba library to get these data in your system
1. Select your package manager and install the library
npm install @coinsamba/js-exchanges-connector
2. 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);
}