BinanceBinance

Launch Year: 2017
Markets: 25
Pairs: 1587
Assets: 434

Social Networks

Volume by Market
MarketVolumeUSD Volume%
ARS3.7B395.0T
100.0%
USDT16.7B16.7B
0.0%
USDC3.4B3.5B
0.0%
BTC2.7K283.7M
0.0%
EUR171.1M200.4M
0.0%
BRL522.9M95.7M
0.0%
ETH14.7K56.3M
0.0%
SOL14.4K2.7M
0.0%
MXN34.5M1.9M
0.0%
XRP682.5K1.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);
}