वॉकलस्टैक का एपीआई आपको अपने मौजूदा वेबसाइट या बुनियादी ढांचे में पॉलीग्लोट सत्रों को एकीकृत करने की अनुमति देता है। आप भी अनुकूलित अनुप्रयोगों को बनाने के लिए एपीआई का उपयोग कर सकते हैं जो वॉकलस्टैक की शक्तिशाली एआई अनुक्रमण और अनुवाद क्षमताओं का लाभ उठाते हैं।.
दस्तावेज़ पढ़ेंJavaScriptimport { Polyglot } from '@vocalstack/js-sdk'; const polyglot = new Polyglot({ apiKey: 'YOUR-API-KEY' }); const stream = await polyglot.getLiveSessionStream({ link: 'a-custom-url', password: 'password', // include only if the session has a password }); // Listen to any live transcriptions that are associated // with the polyglot session. stream.onData((response) => { const { data } = response; // The entire transcription object of the current transcription const transcription = data.activeTranscription; // An object with the transcription timeline console.log(transcription.timeline); });