BinanceBinance

Launch Year: 2017
Markets: 26
Pairs: 1366
Assets: 461

Social Networks

Volume by Market
MarketVolumeVolume in USD%
ARS2.1B142.8T
100.0%
USDT5.8B5.8B
0.0%
USDC924.0M975.7M
0.0%
BRL512.4M100.4M
0.0%
USD47.3M47.3M
0.0%
BTC69146.2M
0.0%
EUR19.9M22.7M
0.0%
ETH11.0K21.3M
0.0%
MXN22.4M1.3M
0.0%
BNB1.4K778.7K
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);
}