BinanceBinance

Launch Year: 2017
Markets: 25
Pairs: 1596
Assets: 438

Social Networks

Volume by Market
MarketVolumeUSD Volume%
ARS3.6B397.2T
100.0%
USDT14.6B14.6B
0.0%
USDC2.4B2.5B
0.0%
BTC2.4K266.6M
0.0%
EUR110.2M127.5M
0.0%
ETH21.6K82.7M
0.0%
BRL404.8M75.0M
0.0%
MXN36.2M1.9M
0.0%
SOL4.6K865.6K
0.0%
TUSD586.0K586.0K
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);
}