Binance
Volume by Market
Market | Volume | USD Volume | % |
---|---|---|---|
ARS | 2.9B | 307.7T | 100.0% |
USDT | 9.6B | 9.6B | 0.0% |
USDC | 1.8B | 1.9B | 0.0% |
BTC | 1.5K | 160.6M | 0.0% |
EUR | 90.5M | 105.3M | 0.0% |
BRL | 390.3M | 72.0M | 0.0% |
ETH | 15.6K | 60.4M | 0.0% |
SOL | 12.0K | 2.3M | 0.0% |
MXN | 35.7M | 1.9M | 0.0% |
XRP | 593.9K | 1.4M | 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);
}