BinanceBinance

Launch Year: 2017
Markets: 28
Pairs: 1623
Assets: 442

Social Networks

Volume by Market
MarketVolumeUSD Volume%
ARS2.6B242.2T
100.0%
USDT8.0B8.0B
0.0%
USDC1.3B1.3B
0.0%
BTC1.9K173.8M
0.0%
EUR64.2M74.5M
0.0%
BRL380.8M71.0M
0.0%
ETH10.1K30.5M
0.0%
USD1.9M1.9M
0.0%
SOL11.5K1.7M
0.0%
MXN20.8M1.1M
0.0%
1-10 of 28
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);
}