BinanceBinance

Launch Year: 2017
Markets: 27
Pairs: 1431
Assets: 445

Social Networks

Volume by Market
MarketVolumeVolume in USD%
ARS1.1B77.0T
100.0%
USDT3.8B3.8B
0.0%
USDC593.7M611.8M
0.0%
BTC97065.0M
0.0%
EUR34.3M39.6M
0.0%
BRL157.1M29.8M
0.0%
USD13.6M13.6M
0.0%
ETH4.7K9.2M
0.0%
BNB1.5K936.6K
0.0%
MXN14.3M798.7K
0.0%
1-10 of 27
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);
}