BinanceBinance

Launch Year: 2017
Markets: 25
Pairs: 1460
Assets: 405

Social Networks

Volume by Market
MarketVolumeUSD Volume%
ARS4.0B478.0T
100.0%
USDT14.1B14.1B
0.0%
USDC2.8B2.8B
0.0%
BTC2.5K293.5M
0.0%
EUR133.2M156.7M
0.0%
BRL535.6M96.0M
0.0%
ETH10.1K30.1M
0.0%
BNB9.2K6.4M
0.0%
SOL12.7K2.1M
0.0%
MXN30.4M1.6M
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);
}