Binance
Volume by Market
Market | Volume | USD Volume | % |
---|---|---|---|
ARS | 3.7B | 395.0T | 100.0% |
USDT | 16.7B | 16.7B | 0.0% |
USDC | 3.4B | 3.5B | 0.0% |
BTC | 2.7K | 283.7M | 0.0% |
EUR | 171.1M | 200.4M | 0.0% |
BRL | 522.9M | 95.7M | 0.0% |
ETH | 14.7K | 56.3M | 0.0% |
SOL | 14.4K | 2.7M | 0.0% |
MXN | 34.5M | 1.9M | 0.0% |
XRP | 682.5K | 1.6M | 0.0% |
1-10 of 25
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-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);
}