API của VocalStack cho phép bạn tích hợp các phiên Polyglot vào trang web hoặc cơ sở hạ tầng hiện có của bạn. Bạn cũng có thể sử dụng API để tạo ứng dụng tùy chỉnh tận dụng khả năng phiên dịch và phiên dịch AI mạnh mẽ của VocalStack.
Đọc tài liệuJavaScriptimport { 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); });