Binance
Volume by Market
Market | Volume | USD Volume | % |
---|---|---|---|
ARS | 3.9B | 465.0T | 100.0% |
USDT | 23.3B | 23.2B | 0.0% |
USDC | 3.7B | 3.8B | 0.0% |
BTC | 2.5K | 293.3M | 0.0% |
EUR | 114.0M | 134.8M | 0.0% |
BRL | 419.3M | 78.9M | 0.0% |
ETH | 10.7K | 49.5M | 0.0% |
SOL | 9.6K | 2.4M | 0.0% |
MXN | 27.2M | 1.5M | 0.0% |
TUSD | 970.7K | 970.7K | 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);
}