---
title: "Bitget REST Private Spot JavaScript SDK Example | Siebly"
description: "Bitget V2 Classic REST private spot JavaScript example for the Siebly Bitget SDK, covering exchange REST API and WebSocket integration, setup, and production SDK docs."
canonical: "https://siebly.io/examples/Bitget/V2%20-%20Classic/Rest/rest-private-spot"
robots: "index,follow"
---

# Bitget REST Private Spot JavaScript SDK Example

Bitget V2 Classic REST private spot JavaScript example for the Siebly Bitget SDK, covering exchange REST API and WebSocket integration, setup, and production SDK docs.

**Path:** [Home](/) / [Examples](/examples) / [Bitget](/examples/Bitget) / [V2 - Classic](/examples/Bitget/V2%20-%20Classic) / [Rest](/examples/Bitget/V2%20-%20Classic/Rest) / [rest-private-spot.ts](/examples/Bitget/V2%20-%20Classic/Rest/rest-private-spot)

[View source on GitHub](https://github.com/sieblyio/crypto-api-examples/blob/master/examples/Bitget/V2%20-%20Classic/Rest/rest-private-spot.ts)

[Open the Bitget JavaScript SDK guide](/sdk/bitget/javascript)

## rest-private-spot.ts

```typescript
import { RestClientV2 } from 'bitget-api';

// read from environmental variables
const API_KEY = process.env.API_KEY_COM;
const API_SECRET = process.env.API_SECRET_COM;
const API_PASS = process.env.API_PASS_COM;
// If running from CLI in unix, you can pass env vars as such:
// API_KEY_COM='lkm12n3-2ba3-1mxf-fn13-lkm12n3a' API_SECRET_COM='035B2B9637E1BDFFEE2646BFBDDB8CE4' API_PASSPHRASE_COM='ComplexPa$$!23$5^' ts-node examples/rest-private-spot.ts

// note the single quotes, preventing special characters such as $ from being incorrectly passed

const client = new RestClientV2({
  apiKey: API_KEY,
  apiSecret: API_SECRET,
  apiPass: API_PASS,
  // apiKey: 'apiKeyHere',
  // apiSecret: 'apiSecretHere',
  // apiPass: 'apiPassHere',
});

/** This is a simple script wrapped in a immediately invoked function expression, designed to check for any available BTC balance and immediately sell the full amount for USDT */
(async () => {
  try {
    console.log(await client.getSpotAccount());
  } catch (e) {
    console.error('request failed: ', e);
  }
})();
```
