BinanceBinance

Launch Year: 2017
Markets: 25
Pairs: 1465
Assets: 409

Social Networks

Volume by Market
MarketVolumeUSD Volume%
ARS2.5B270.5T
100.0%
USDT7.7B7.7B
0.0%
USDC1.6B1.6B
0.0%
BRL970.4M177.9M
0.0%
BTC1.2K133.4M
0.0%
EUR62.6M73.8M
0.0%
ETH14.3K35.7M
0.0%
BNB5.8K3.8M
0.0%
MXN18.4M983.3K
0.0%
SOL6.0K950.8K
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);
}