BinanceBinance

Launch Year: 2017
Markets: 25
Pairs: 1592
Assets: 435

Social Networks

Volume by Market
MarketVolumeUSD Volume%
ARS2.9B307.7T
100.0%
USDT9.6B9.6B
0.0%
USDC1.8B1.9B
0.0%
BTC1.5K160.6M
0.0%
EUR90.5M105.3M
0.0%
BRL390.3M72.0M
0.0%
ETH15.6K60.4M
0.0%
SOL12.0K2.3M
0.0%
MXN35.7M1.9M
0.0%
XRP593.9K1.4M
0.0%
1-10 of 25
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);
}