BinanceBinance

Launch Year: 2017
Markets: 25
Pairs: 1534
Assets: 422

Social Networks

Volume by Market
MarketVolumeUSD Volume%
ARS3.7B431.9T
100.0%
USDT10.3B10.3B
0.0%
USDC2.5B2.6B
0.0%
BTC1.3K146.2M
0.0%
BRL371.7M69.9M
0.0%
EUR57.4M67.8M
0.0%
ETH6.1K27.6M
0.0%
SOL14.9K3.5M
0.0%
MXN15.4M838.9K
0.0%
COP1.2B306.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);
}