BinanceBinance

Launch Year: 2017
Markets: 25
Pairs: 1534
Assets: 422

Social Networks

Volume by Market
MarketVolumeUSD Volume%
ARS3.7B428.3T
100.0%
USDT10.3B10.2B
0.0%
USDC2.5B2.5B
0.0%
BTC1.2K142.9M
0.0%
BRL376.0M70.7M
0.0%
EUR57.7M68.1M
0.0%
ETH5.9K26.8M
0.0%
SOL14.5K3.4M
0.0%
MXN15.4M836.6K
0.0%
COP1.2B306.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);
}