KuCoin JavaScript SDK example: ws-api-raw-promises.ts

KuCoin websocket API RAW promises JavaScript example for the Siebly KuCoin 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/Kucoin/WebSockets/WS-API/ws-api-raw-promises.ts

What this example covers

  • KuCoin WebSocket API request/response JavaScript example.
  • Uses the Siebly KuCoin SDK package kucoin-api instead of hand-written WebSocket plumbing.
  • Source path: Kucoin/WebSockets/WS-API/ws-api-raw-promises.ts.
  • Imports SDK symbols including DefaultLogger, WebsocketClient, WS_KEY_MAP.
  • Calls SDK methods such as on(), sendWSAPIRequest().

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.
/* eslint-disable @typescript-eslint/no-unused-vars */import { DefaultLogger, WebsocketClient, WS_KEY_MAP } from 'kucoin-api'; async function start() {  // Optional: inject a custom logger to override internal logging behaviour  const logger: DefaultLogger = {    ...DefaultLogger,    // Uncomment the below callback to introduce filtered trace logging in the WebsocketClient.    // trace: (...params) => {    //   if (    //     [    //       'Sending ping',    //       // 'Sending upstream ws message: ',    //       'Received pong',    //     ].includes(params[0])    //   ) {    //     return;    //   }    //   console.log('trace', JSON.stringify(params, null, 2));    // },  };   const account = {    key: process.env.API_KEY || 'keyHere',    secret: process.env.API_SECRET || 'secretHere',    passphrase: process.env.API_PASSPHRASE || 'apiPassPhraseHere', // This is NOT your account password  };   // console.log('connecting with ', account);  const client = new WebsocketClient(    {      apiKey: account.key,      apiSecret: account.secret,      apiPassphrase: account.passphrase,    },    // logger,  );   client.on('open', (data) => {    console.log('open: ', data?.wsKey);  });   // Data received  client.on('update', (data) => {    console.info('data received: ', JSON.stringify(data));  });   // Something happened, attempting to reconnect  client.on('reconnect', (data) => {    console.log('reconnect: ', data);  });   // Reconnect successful  client.on('reconnected', (data) => {    console.log('reconnected: ', data);  });   // Connection closed. If unexpected, expect reconnect -> reconnected.  client.on('close', (data) => {    console.error('close: ', data);  });   // Reply to a request, e.g. "subscribe"/"unsubscribe"/"authenticate"  client.on('response', (data) => {    // console.info('response: ', data);  });   client.on('exception', (data) => {    console.error('exception: ', data);  });   /**   *   * Raw events can be routed via the sendWSAPIRequest in the WebsocketClient, as shown below.   * However, for a simpler integration, it is recommended to use the WebsocketAPIClient. The   * WebsocketAPIClient class is a wrapper around sendWSAPIRequest, with clear functions, typed   * requests and typed responses. The simpler WSAPIClient interface behaves much like a REST API   * wrapper, but all calls are routed via the WebSocket API.   *   * For a clearer example, refer to the "ws-api-client.ts" example found in this folder.   */  try {    const res = await client.sendWSAPIRequest(      WS_KEY_MAP.wsApiSpotV1,      'spot.order',      {        side: 'buy',        symbol: 'BTC-USDT',        type: 'limit',        price: '20000', // Very low price to avoid accidental execution        size: '0.0001',      },    );    console.log('ws api res: ', res);  } catch (e) {    console.error('ws api exception: ', e);  }} start(); 

Subscribe on Substack

Complete the Substack form below to join our newsletter. Substack handles all subscriber data directly.