€ 100 per maand
Maandelijks gefactureerdJaarlijks gefactureerd
VocalStack's API stelt u in staat om Polyglot sessies te integreren in uw bestaande website of infrastructuur. U kunt de API ook gebruiken om aangepaste applicaties te maken die gebruikmaken van de krachtige AI-transcriptie- en vertaalmogelijkheden van VocalStack.
Lees de documentatieJavaScriptimport { 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); });