Preis pro Monat
Monatlich in Rechnung gestelltJährlich in Rechnung gestellt
VocalStacks API ermöglicht es Ihnen, Polyglot-Sitzungen in Ihre bestehende Website oder Infrastruktur zu integrieren. Sie können die API auch verwenden, um benutzerdefinierte Anwendungen zu erstellen, die die leistungsstarken KI-Transkriptions- und Übersetzungsfunktionen von VocalStack nutzen.
Dokumentation lesenJavaScriptimport { 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); });