Bitget V3 UTA JavaScript SDK example: rest-public-UTA-futures.ts

Bitget V3 UTA REST public UTA futures JavaScript example for the Siebly Bitget SDK, covering exchange REST API and WebSocket integration, setup, and production SDK docs.

We use environment variables in our examples for API keys. It is your responsibility to manage and secure your keys appropriately.

examples/Bitget/V3 - UTA/Rest/rest-public-UTA-futures.ts

What this example covers

  • Bitget REST API JavaScript example.
  • Uses the Siebly Bitget SDK package bitget-api instead of hand-written HTTP request plumbing.
  • Source path: Bitget/V3 - UTA/Rest/rest-public-UTA-futures.ts.
  • Example category: V3 UTA.
  • Imports SDK symbols including RestClientV3.
  • Calls SDK methods such as getCandles().

How to use this example

  • Start here for the specific request or stream pattern, then check the matching SDK guide for install, credentials, and operational notes.
  • Open the repository source when you need the latest committed version: GitHub source file.
import { RestClientV3 } from 'bitget-api'; const restClient = new RestClientV3(); const symbol = 'BTCUSDT'; (async () => {  try {    const response = await restClient.getCandles({      symbol,      category: 'USDT-FUTURES',      interval: '1m',    });     console.table(response.data);     console.log('getCandles returned ' + response.data.length + ' candles');  } catch (e) {    console.error('request failed: ', e);  }})(); 

Subscribe on Substack

Complete the Substack form below to join our newsletter. Substack handles all subscriber data directly.