BinanceBinance

Launch Year: 2017
Markets: 26
Pairs: 1610
Assets: 441

Social Networks

Volume by Market
MarketVolumeUSD Volume%
ARS1.3B122.6T
100.0%
USDT7.1B7.1B
0.0%
USDC992.8M1.0B
0.0%
BTC1.2K116.1M
0.0%
EUR57.1M66.4M
0.0%
ETH12.3K39.5M
0.0%
BRL182.5M34.3M
0.0%
MXN25.8M1.4M
0.0%
SOL7.7K1.1M
0.0%
COP781.5M204.5K
0.0%
1-10 of 26
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);
}