Binance
Volume by Market
Market | Volume | USD Volume | % |
---|---|---|---|
ARS | 2.5B | 270.5T | 100.0% |
USDT | 7.7B | 7.7B | 0.0% |
USDC | 1.6B | 1.6B | 0.0% |
BRL | 970.4M | 177.9M | 0.0% |
BTC | 1.2K | 133.4M | 0.0% |
EUR | 62.6M | 73.8M | 0.0% |
ETH | 14.3K | 35.7M | 0.0% |
BNB | 5.8K | 3.8M | 0.0% |
MXN | 18.4M | 983.3K | 0.0% |
SOL | 6.0K | 950.8K | 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);
}