Get data from pending or completed transcriptions
Transcribe live speech from a microphone or live stream
Monitor and manage transcription state with sessions
Translate transcribed text to another language
Transcribe speech from pre-recorded audio in a URL to plain text
Common request options and responses for all transcription operations
Create a session that can be used to broadcast a live transcription via a public shareable link
access
: Either "readonly" or "readwrite". The former enables you to execute API calls that return data. The later enables you to also execute API requests that includes billable transcription related operations. The default value for this option is "readonly". lifetime_s
: A number between 1 and 120 representing the lifetime of the token in seconds. After this period, the token will expire and will no longer be useable. Note that this will not affect asynchronous requests that have already started using this token. (In other words, once an asynchronous request has started, it will run to completion even if the token has expired after the request has started.) The default value for this option is 10. one_time
: A boolean signifying whether this API token is meant for a single use. If true, once this token has been used for an API request, it will expire. The default value for this option is true. JavaScriptimport { Security } from '@vocalstack/js-sdk'; const sdk = new Security({ apiKey: 'YOUR-API-KEY' }); const authToken = await sdk.generateToken({ access: 'readwrite', // Optional: 'readonly' or 'readwrite' lifetime_s: 60, // Optional: 1-120 seconds one_time: true, // Optional: true or false }); // Next, return the token to the client where API request will be made. // Make sure to keep the token secure and do not expose it to the public.
authToken
setting instead of an apiKey
. For example, consider the documentation for Transcribe Audio from URL.{ apiKey: 'YOUR-API-KEY' }
with { authToken: 'YOUR-AUTH-TOKEN' }
👇JavaScriptimport { UrlTranscription } from '@vocalstack/js-sdk'; const authToken = await fetch('http://example.com/your-secured-api/authenticate') .then((response) => response.json()) .then((data) => data.token); const sdk = new UrlTranscription({ authToken }); const transcription = await sdk.connect({ url: 'http://example.com/speech.mp3' }); transcription.start();