Bitget TypeScript SDK example: ws-demo-trading.ts
Bitget V2 Classic WebSocket websocket demo trading example for the Siebly Bitget SDK, with TypeScript source for exchange REST API and WebSocket integration, setup, and production SDK docs.
What This Example Covers
- Bitget WebSocket stream example in TypeScript.
- Uses the Siebly Bitget SDK package
bitget-apiinstead of hand-written WebSocket plumbing. - Source path:
Bitget/V2 - Classic/Websocket/ws-demo-trading.ts. - Example category: V2 Classic WebSocket.
- Imports SDK symbols including
DefaultLogger,WebsocketClientV2. - Calls SDK methods such as
on(),subscribeTopic().
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.
- For WebSocket examples, keep reconnect, resubscribe, heartbeat, and event-handler behavior explicit in your service.
- Open the repository source when you need the latest committed version: GitHub source file.
Example Path
Bitget/V2 - Classic/Websocket/ws-demo-trading.ts
Source Link
Repository source: https://github.com/sieblyio/crypto-api-examples/blob/master/examples/Bitget/V2 - Classic/Websocket/ws-demo-trading.ts
Related SDK Docs
Example Source
import { DefaultLogger, WebsocketClientV2 } from 'bitget-api';
(async () => {
const logger = {
...DefaultLogger,
trace: (...params: any[]) => console.log('trace', ...params),
};
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/ws-private.ts
const wsClient = new WebsocketClientV2(
{
// restOptions: {
// optionally provide rest options, e.g. to pass through a proxy
// },
// Set demoTrading to true, to route all connections to the demo trading wss URLs:
demoTrading: true,
// If using private topics, make sure to include API keys
apiKey: API_KEY,
apiSecret: API_SECRET,
apiPass: API_PASS,
},
logger,
);
wsClient.on('update', (data) => {
console.log('WS raw message received ', data);
// console.log('WS raw message received ', JSON.stringify(data, null, 2));
});
wsClient.on('open', (data) => {
console.log('WS connection opened:', data.wsKey);
});
wsClient.on('response', (data) => {
console.log('WS response: ', JSON.stringify(data, null, 2));
});
wsClient.on('reconnect', ({ wsKey }) => {
console.log('WS automatically reconnecting.... ', wsKey);
});
wsClient.on('reconnected', (data) => {
console.log('WS reconnected ', data?.wsKey);
});
wsClient.on('exception', (data) => {
console.log('WS error', data);
});
/**
* Public events
*/
const symbol = 'BTCUSDT';
wsClient.subscribeTopic('SPOT', 'ticker', symbol);
wsClient.subscribeTopic('USDC-FUTURES', 'account');
})();