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

Bybit REST V5 all 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-all.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-all.ts.
  • Imports SDK symbols including RestClientV5.
  • Calls SDK methods such as getKline(), getMarkPriceKline(), getIndexPriceKline().

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,}); /** * If you don't plan on making any private api calls, * you can instance the REST client without any parameters: * * const client = new RestClientV5(); */ (async () => {  try {    const klineResult = await client.getKline({      category: 'linear',      interval: '15',      symbol: 'BTCUSDT',    });    console.log('klineResult: ', klineResult);     const markPriceKlineResult = await client.getMarkPriceKline({      category: 'linear',      interval: '15',      symbol: 'BTCUSDT',    });    console.log('markPriceKlineResult: ', markPriceKlineResult);     const indexPriceKline = await client.getIndexPriceKline({      category: 'linear',      interval: '15',      symbol: 'BTCUSDT',    });    console.log('indexPriceKline: ', indexPriceKline);  } 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.