Bybit TypeScript SDK example: rest-v5-private.ts
Bybit REST REST V5 private example for the Siebly Bybit SDK, with TypeScript source for exchange REST API and WebSocket integration, setup, and production SDK docs.
What This Example Covers
- Bybit REST API example in TypeScript.
- Uses the Siebly Bybit SDK package
bybit-apiinstead of hand-written HTTP request plumbing. - Source path:
Bybit/Rest/rest-v5-private.ts. - Example category: REST.
- Imports SDK symbols including
RestClientV5. - Calls SDK methods such as
getPositionInfo(),submitOrder().
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.
Example Path
Bybit/Rest/rest-v5-private.ts
Source Link
Repository source: https://github.com/sieblyio/crypto-api-examples/blob/master/examples/Bybit/Rest/rest-v5-private.ts
Related SDK Docs
Example Source
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,
});
(async () => {
try {
/** Simple examples for private REST API calls with bybit's V5 REST APIs */
const response = await client.getPositionInfo({
category: 'linear',
symbol: 'BTCUSDT',
});
console.log('response:', response);
// Trade USDT linear perps
const buyOrderResult = await client.submitOrder({
category: 'linear',
symbol: 'BTCUSDT',
orderType: 'Market',
qty: '1',
side: 'Buy',
});
console.log('buyOrderResult:', buyOrderResult);
const sellOrderResult = await client.submitOrder({
category: 'linear',
symbol: 'BTCUSDT',
orderType: 'Market',
qty: '1',
side: 'Sell',
});
console.log('sellOrderResult:', sellOrderResult);
} catch (e) {
console.error('request failed: ', e);
}
})();