Binance Portfolio Margin JavaScript SDK example: rest-portfoliomargin-private.ts

Binance Portfolio Margin REST portfoliomargin private JavaScript example for the Siebly Binance 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/Binance/Rest/Portfolio Margin/rest-portfoliomargin-private.ts

What this example covers

  • Binance REST API JavaScript example.
  • Uses the Siebly Binance SDK package binance instead of hand-written HTTP request plumbing.
  • Source path: Binance/Rest/Portfolio Margin/rest-portfoliomargin-private.ts.
  • Example category: Portfolio Margin.
  • Imports SDK symbols including PortfolioClient.
  • Calls SDK methods such as getBalance(), getPMUserDataListenKey(), submitNewUMOrder().

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 { PortfolioClient } from 'binance'; const key = process.env.API_KEY_COM || 'APIKEY';const secret = process.env.API_SECRET_COM || 'APISECRET'; const client = new PortfolioClient({  api_key: key,  api_secret: secret,  beautifyResponses: true,}); (async () => {  try {    const res = await client.getBalance();    console.log('res', res);     const listenKey = await client.getPMUserDataListenKey();    console.log('listen key res: ', listenKey);     // const newOrderRes = await client.submitNewUMOrder({    //   symbol: 'BTCUSDT',    //   side: 'BUY',    //   type: 'MARKET',    //   quantity: '10',    // });     // console.log('new order res: ', newOrderRes);  } 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.