API Documentation
Upload
Pre-recorded endpoints
Live endpoints
Live WS actions
Live WS messages
- Realtime messages
- Post-processing messages
- Acknowledgment messages
- Lifecycle messages
Live callbacks
- Realtime messages
- Post-processing messages
- Acknowledgment messages
- Lifecycle messages
Live webhooks
- Lifecycle messages
Transcription (deprecated)
Get result
(Deprecated) Prefer the more specific pre-recorded endpoint.
Get transcription’s status, parameters and result.
GET
https://api.gladia.io/
/
v2
/
transcription
/
{id}
curl --request GET \
--url https://api.gladia.io/v2/transcription/{id} \
--header 'x-gladia-key: <api-key>'
{
"id": "45463597-20b7-4af7-b3b3-f5fb778203ab",
"request_id": "G-45463597",
"version": 2,
"kind": "pre-recorded",
"created_at": "2023-12-28T09:04:17.210Z",
"status": "queued",
"file": {
"id": "f0dcZE10-23d8-47f0-a25d-74a6eed88721",
"filename": "split_infinity.wav",
"source": "http://files.gladia.io/example/audio-transcription/split_infinity.wav",
"audio_duration": 20,
"number_of_channels": 1
},
"request_params": {
"audio_url": "http://files.gladia.io/example/audio-transcription/split_infinity.wav",
"subtitles": false,
"diarization": false,
"translation": false,
"summarization": false,
"sentences": false,
"moderation": false,
"named_entity_recognition": false,
"name_consistency": false,
"speaker_reidentification": false,
"custom_spelling": false,
"structured_data_extraction": false,
"chapterization": false,
"sentiment_analysis": false,
"display_mode": false,
"audio_enhancer": true,
"language_config": {
"code_switching": false,
"languages": [
"fr",
"en"
]
},
"accurate_words_timestamps": false,
"diarization_enhanced": false,
"punctuation_enhanced": false
},
"completed_at": null,
"custom_metadata": null,
"error_code": null,
"result": null
}
Authorizations
Your personal Gladia API key
Path Parameters
Id of the transcription job
Example:
"45463597-20b7-4af7-b3b3-f5fb778203ab"
Response
200
application/json
The transcription job's metadata
The response is of type object
.
The response is of type object
.
The response is of type object
.
Was this page helpful?
curl --request GET \
--url https://api.gladia.io/v2/transcription/{id} \
--header 'x-gladia-key: <api-key>'
{
"id": "45463597-20b7-4af7-b3b3-f5fb778203ab",
"request_id": "G-45463597",
"version": 2,
"kind": "pre-recorded",
"created_at": "2023-12-28T09:04:17.210Z",
"status": "queued",
"file": {
"id": "f0dcZE10-23d8-47f0-a25d-74a6eed88721",
"filename": "split_infinity.wav",
"source": "http://files.gladia.io/example/audio-transcription/split_infinity.wav",
"audio_duration": 20,
"number_of_channels": 1
},
"request_params": {
"audio_url": "http://files.gladia.io/example/audio-transcription/split_infinity.wav",
"subtitles": false,
"diarization": false,
"translation": false,
"summarization": false,
"sentences": false,
"moderation": false,
"named_entity_recognition": false,
"name_consistency": false,
"speaker_reidentification": false,
"custom_spelling": false,
"structured_data_extraction": false,
"chapterization": false,
"sentiment_analysis": false,
"display_mode": false,
"audio_enhancer": true,
"language_config": {
"code_switching": false,
"languages": [
"fr",
"en"
]
},
"accurate_words_timestamps": false,
"diarization_enhanced": false,
"punctuation_enhanced": false
},
"completed_at": null,
"custom_metadata": null,
"error_code": null,
"result": null
}
Assistant
Responses are generated using AI and may contain mistakes.