par mois
Facturée mensuellementFacturée annuellement
L'API de VocalStack vous permet d'intégrer les sessions Polyglot dans votre site web ou votre infrastructure. Vous pouvez également utiliser l'API pour créer des applications personnalisées qui tirent parti des puissantes fonctionnalités de transcription et de traduction de VocalStack.
Lire la documentationJavaScriptimport { 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); });