Gate.ioGate.io

Launch Year: 2017
Markets: 8
Pairs: 2206
Assets: 2056

Social Networks

Volume by Market
MarketVolumeVolume in USD%
USDT40.3T40.3T
99.8%
USDC66.2B69.7B
0.2%
ETH138258.8K
0.0%
BTC1112.1K
0.0%
USD4848
0.0%
RLUSD59.9B-
-
GUSD11.6B-
-
USD13.7B-
-
1-8 of 8
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 { gateio } from '@coinsamba/js-exchanges-connector'

3. Use the available methods

const exchange = new gateio();

// 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);
}