BinanceBinance

Launch Year: 2017
Markets: 26
Pairs: 1371
Assets: 431

Social Networks

Volume by Market
MarketVolumeVolume in USD%
ARS3.2B213.4T
100.0%
USDT8.2B8.1B
0.0%
USDC1.7B1.8B
0.0%
USD121.3M121.3M
0.0%
BTC1.8K120.8M
0.0%
BRL487.0M97.0M
0.0%
EUR56.2M65.4M
0.0%
ETH16.7K31.9M
0.0%
MXN38.7M2.2M
0.0%
SOL25.1K2.0M
0.0%
1-10 of 26
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);
}