Binance
Volume by Market
Market | Volume | USD Volume | % |
---|---|---|---|
ARS | 3.7B | 428.3T | 100.0% |
USDT | 10.3B | 10.2B | 0.0% |
USDC | 2.5B | 2.5B | 0.0% |
BTC | 1.2K | 142.9M | 0.0% |
BRL | 376.0M | 70.7M | 0.0% |
EUR | 57.7M | 68.1M | 0.0% |
ETH | 5.9K | 26.8M | 0.0% |
SOL | 14.5K | 3.4M | 0.0% |
MXN | 15.4M | 836.6K | 0.0% |
COP | 1.2B | 306.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);
}