BinanceBinance

Launch Year: 2017
Markets: 26
Pairs: 1403
Assets: 433

Social Networks

Volume by Market
MarketVolumeVolume in USD%
ARS1.3B99.1T
100.0%
USDT4.7B4.7B
0.0%
USDC764.8M807.3M
0.0%
BRL218.1M43.9M
0.0%
BTC54142.3M
0.0%
EUR28.7M33.7M
0.0%
ETH3.0K7.0M
0.0%
USD4.1M4.1M
0.0%
MXN21.2M1.2M
0.0%
BNB1.9K1.2M
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);
}