Binance
Volume by Market
Market | Volume | USD Volume | % |
---|---|---|---|
ARS | 4.0B | 478.0T | 100.0% |
USDT | 14.1B | 14.1B | 0.0% |
USDC | 2.8B | 2.8B | 0.0% |
BTC | 2.5K | 293.5M | 0.0% |
EUR | 133.2M | 156.7M | 0.0% |
BRL | 535.6M | 96.0M | 0.0% |
ETH | 10.1K | 30.1M | 0.0% |
BNB | 9.2K | 6.4M | 0.0% |
SOL | 12.7K | 2.1M | 0.0% |
MXN | 30.4M | 1.6M | 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);
}