Bybit JavaScript SDK example: rest-v5-proxies.ts

Bybit REST V5 proxies JavaScript example for the Siebly Bybit 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/Bybit/Rest/rest-v5-proxies.ts

What this example covers

  • Bybit REST API JavaScript example.
  • Uses the Siebly Bybit SDK package bybit-api instead of hand-written HTTP request plumbing.
  • Source path: Bybit/Rest/rest-v5-proxies.ts.
  • Imports SDK symbols including RestClientV5.
  • Calls SDK methods such as getWalletBalance(), batchSubmitOrders().

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 { RestClientV5 } from 'bybit-api'; const key = process.env.API_KEY_COM;const secret = process.env.API_SECRET_COM; const client = new RestClientV5(  {    key: key,    secret: secret,    parseAPIRateLimits: true,    testnet: true,    // Sometimes using a proxy introduces recv timestamp errors (due to the extra latency)    // If that happens, you can try increasing the recv window (which is 5000ms by default)    // recv_window: 10000,  },  {    /**     * Axios has a native way of supporting http/https proxies. It works for most proxy services but not all.     * If you have issues making any proxied requests this way, take a look at the rest-v5-proxies2.ts example using the https-proxy-agent.     */    proxy: {      protocol: 'http', // or 'https'      host: 'proxyhost',      port: Number('proxyport'),      auth: {        username: 'proxyuserifneeded',        password: 'proxypassifneeded',      },    },  },); (async () => {  try {    const res = await client.getWalletBalance({ accountType: 'UNIFIED' });     console.log('response: ', JSON.stringify(res, null, 2));     // const orders = await client.batchSubmitOrders('linear', [    //   {    //     symbol: 'ETHUSDT',    //     orderType: 'Limit',    //     side: 'Buy',    //     qty: '1',    //     orderIv: '6',    //     timeInForce: 'GTC',    //     orderLinkId: 'option-test-001',    //     mmp: false,    //     reduceOnly: false,    //   },    //   {    //     symbol: 'ETHUSDT',    //     orderType: 'Limit',    //     side: 'Sell',    //     qty: '2',    //     price: '700',    //     timeInForce: 'GTC',    //     orderLinkId: 'option-test-001',    //     mmp: false,    //     reduceOnly: false,    //   },    // ]);     // console.log('orders: ', JSON.stringify(orders, null, 2));  } 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.