Batch Transcribe
Transcribe V1 has been deprecated!
The Transcribe V1 endpoint has been deprecated and will be removed in a future release. This documentation has been updated to reference the newer v2alpha API, which includes improvements and ongoing support. If you're still using V1, we recommend migrating to v2alpha as soon as possible to ensure continued functionality. API Reference
Create Batch
POST
https://vulavula-services.lelapa.ai/api/v2alpha/transcribe/batch?lang_code=[INSERT-LANGUAGE-CODE]
HEADERS
X-CLIENT-TOKEN string required
API token generated for the project.
PARAMS
lang_code string optional
This is the language code that we are going to use to transcribe the uploaded audio.
Optionally, you can specify a language code to specify which model you’re speaking on. The following language codes are valid
Code
If no language code is specified, our built-in language ID will select the most probable language.
Code
RESPONSE
🟢 201 Created
RESPONSE example (200)
🟠 401 Unauthorized
Upload Files
This will batch upload all files in the current folder ("-s .") to the destination container ("-d .").
Code
Process Batch
POST
https://vulavula-services.lelapa.ai/api/v2alpha/transcribe/batch/{batch_id}/process?diarise=1
HEADERS
X-CLIENT-TOKEN string required
API token generated for the project.
PARAMS
diairise int optional Boolean value to enable diarisation. Set to 1 to enable diarisation. Set to 0 or remove to disable diarisation.
Code
RESPONSE
🟢 202 Accepted
🟢 204 No Content
🟠 401 Unauthorized
Get All Customer Batch Transcriptions
GET
https://vulavula-services.lelapa.ai/api/v2alpha/transcribe/batch
This endpoint retrieves all batch transcriptions for a customer.
HEADERS
X-CLIENT-TOKEN string required
API token generated for the project.
RESPONSE
🟢 200 OK
RESPONSE example (200)
🟠 401 Unauthorized
Get Batch Transcription Results
GET
https://vulavula-services.lelapa.ai/api/v2alpha/transcribe/batch/{batch_id}/transcriptions
This endpoint retrieves the transcriptions for a batch.
HEADERS
X-CLIENT-TOKEN string required
API token generated for the project.
PARAMS
batch_id string required
The id of the batch to retrieve transcriptions for.
RESPONSE
🟢 200 OK
RESPONSE example (200)
Code