v3
OpenAPI 3.1.02026-08-0321138121.5 KBTranscription V2
Initiate a new transcription job
post/v2/transcription
Request body
Example request
{
"custom_vocabulary_config": {
"vocabulary": [
"Westeros",
{
"value": "Stark"
},
{
"value": "Night's Watch",
"pronunciations": [
"Nightz Watch"
],
"intensity": 0.4,
"language": "en"
}
],
"default_intensity": 0.5
},
"callback_url": "https://callback.example",
"callback_config": {
"url": "https://callback.example"
},
"subtitles_config": {
"formats": [
"srt"
]
},
"diarization_config": {
"number_of_speakers": 3,
"min_speakers": 1,
"max_speakers": 2
},
"translation_config": {
"target_languages": [
"en"
]
},
"custom_spelling_config": {
"spelling_dictionary": {
"Gettleman": [
"gettleman"
],
"SQL": [
"Sequel"
]
}
},
"audio_to_llm_config": {
"prompts": [
"Extract the key points from the transcription"
]
},
"pii_redaction_config": {
"processed_text_type": "MARKER"
},
"custom_metadata": {
"user": "John Doe"
},
"audio_url": "https://files.gladia.io/example/audio-transcription/split_infinity.wav"
}Response
The transcription job has been initiated
Example response
{
"id": "45463597-20b7-4af7-b3b3-f5fb778203ab",
"result_url": "https://api.gladia.io/v2/transcription/45463597-20b7-4af7-b3b3-f5fb778203ab"
}