BinanceBinance

Launch Year: 2017
Markets: 27
Pairs: 1438
Assets: 446

Social Networks

Volume by Market
MarketVolumeVolume in USD%
ARS859.0M61.7T
100.0%
USDT3.3B3.3B
0.0%
USDC648.7M670.1M
0.0%
BTC78856.6M
0.0%
EUR27.9M31.9M
0.0%
BRL167.2M31.4M
0.0%
USD18.8M18.8M
0.0%
ETH6.7K14.3M
0.0%
MXN17.2M958.0K
0.0%
BNB1.4K902.2K
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);
}