---
title: "Get the pre recorded job's metadata"
method: GET
path: "/v2/pre-recorded/{id}"
tags: ["Pre-recorded V2"]
---

# Get the pre recorded job's metadata

`GET /v2/pre-recorded/{id}`

## Path parameters

- `id` string, required

## Response `200`

The pre recorded job's metadata

- PreRecordedResponse
  - `id` string, uuid, required — Id of the job
  - `request_id` string, required — Debug id
  - `version` integer, required — API version
  - `status` 'queued' | 'processing' | 'done' | 'error', required — "queued": the job has been queued. "processing": the job is being processed. "done": the job has been processed and the result is available. "error": an error occurred during the job's processing.
  - `created_at` string, date-time, required — Creation date
  - `completed_at` string, date-time, nullable — Completion date when status is "done" or "error"
  - `custom_metadata` object — Custom metadata given in the initial request
  - `error_code` integer, nullable — HTTP status code of the error if status is "error"
  - `post_session_metadata` object, required — For debugging purposes, send data that could help to identify issues
  - `kind` 'pre-recorded', required
  - `file` FileResponse
    - `id` string, required — The file id
    - `filename` string, nullable, required — The name of the uploaded file
    - `source` string, nullable, required — The link used to download the file if audio_url was used
    - `audio_duration` number, nullable, required — Duration of the audio file
    - `number_of_channels` integer, nullable, required — Number of channels in the audio file
  - `request_params` PreRecordedRequestParamsResponse
    - `custom_vocabulary` boolean — **[Beta]** Can be either boolean to enable custom_vocabulary for this audio or an array with specific vocabulary list to feed the transcription model with
    - `custom_vocabulary_config` CustomVocabularyConfigDTO
      - `vocabulary` union[], required — Specific vocabulary list to feed the transcription model with. Each item can be a string or an object with the following properties: value, intensity, pronunciations, language.
        - union
          - CustomVocabularyEntryDTO
            - `value` string, required — The text used to replace in the transcription.
            - `intensity` number — The global intensity of the feature.
            - `pronunciations` string[] — The pronunciations used in the transcription.
            - `language` 'af' | 'am' | 'ar' | 'as' | 'az' | 'ba' | 'be' | 'bg' | 'bn' | 'bo' | 'br' | 'bs' | 'ca' | 'cs' | 'cy' | 'da' | 'de' | 'el' | 'en' | 'es' | 'et' | 'eu' | 'fa' | 'fi' | 'fo' | 'fr' | 'gl' | 'gu' | 'ha' | 'haw' | 'he' | 'hi' | 'hr' | 'ht' | 'hu' | 'hy' | 'id' | 'is' | 'it' | 'ja' | 'jw' | 'ka' | 'kk' | 'km' | 'kn' | 'ko' | 'la' | 'lb' | 'ln' | 'lo' | 'lt' | 'lv' | 'mg' | 'mi' | 'mk' | 'ml' | 'mn' | 'mr' | 'ms' | 'mt' | 'my' | 'ne' | 'nl' | 'nn' | 'no' | 'oc' | 'pa' | 'pl' | 'ps' | 'pt' | 'ro' | 'ru' | 'sa' | 'sd' | 'si' | 'sk' | 'sl' | 'sn' | 'so' | 'sq' | 'sr' | 'su' | 'sv' | 'sw' | 'ta' | 'te' | 'tg' | 'th' | 'tk' | 'tl' | 'tr' | 'tt' | 'uk' | 'ur' | 'uz' | 'vi' | 'yi' | 'yo' | 'zh' — Specify the language in which it will be pronounced when sound comparison occurs. Default to transcription language.
          - string
      - `default_intensity` number — Default intensity for the custom vocabulary
    - `callback_url` string, uri — **[Deprecated]** Use `callback`/`callback_config` instead. Callback URL we will do a `POST` request to with the result of the transcription
    - `callback` boolean — Enable callback for this transcription. If true, the `callback_config` property will be used to customize the callback behaviour
    - `callback_config` CallbackConfigDto
      - `url` string, uri, required — The URL to be called with the result of the transcription
      - `method` 'POST' | 'PUT' — The HTTP method to be used. Allowed values are `POST` or `PUT` (default: `POST`)
    - `subtitles` boolean — Enable subtitles generation for this transcription
    - `subtitles_config` SubtitlesConfigDTO
      - `formats` SubtitlesFormatEnum[] — Subtitles formats you want your transcription to be formatted to
      - `minimum_duration` number — Minimum duration of a subtitle in seconds
      - `maximum_duration` number — Maximum duration of a subtitle in seconds
      - `maximum_characters_per_row` integer — Maximum number of characters per row in a subtitle
      - `maximum_rows_per_caption` integer — Maximum number of rows per caption
      - `style` 'default' | 'compliance' — Style of the subtitles. Compliance mode refers to : https://loc.gov/preservation/digital/formats//fdd/fdd000569.shtml#:~:text=SRT%20files%20are%20basic%20text,alongside%2C%20example%3A%20%22MyVideo123
    - `diarization` boolean — Enable speaker recognition (diarization) for this audio
    - `diarization_config` DiarizationConfigDTO
      - `number_of_speakers` integer — Exact number of speakers in the audio
      - `min_speakers` integer — Minimum number of speakers in the audio
      - `max_speakers` integer — Maximum number of speakers in the audio
    - `translation` boolean — **[Beta]** Enable translation for this audio
    - `translation_config` TranslationConfigDTO
      - `target_languages` TranslationLanguageCodeEnum[], required — Target language in `iso639-1` format you want the transcription translated to
      - `model` 'base' | 'batch' | 'enhanced' — Model you want the translation model to use to translate
      - `match_original_utterances` boolean — Align translated utterances with the original ones
      - `lipsync` boolean — Whether to apply lipsync to the translated transcription.
      - `context_adaptation` boolean — Enables or disables context-aware translation features that allow the model to adapt translations based on provided context.
      - `context` string — Context information to improve translation accuracy
      - `informal` boolean — Forces the translation to use informal language forms when available in the target language.
    - `summarization` boolean — Enable summarization for this audio
    - `summarization_config` SummarizationConfigDTO
      - `type` 'general' | 'bullet_points' | 'concise' — The type of summarization to apply
    - `named_entity_recognition` boolean — **[Alpha]** Enable named entity recognition for this audio
    - `custom_spelling` boolean — **[Alpha]** Enable custom spelling for this audio
    - `custom_spelling_config` CustomSpellingConfigDTO
      - `spelling_dictionary` object, required — The list of spelling applied on the audio transcription
    - `sentiment_analysis` boolean — Enable sentiment analysis for this audio
    - `audio_to_llm` boolean — Enable audio to LLM processing for this audio
    - `audio_to_llm_config` AudioToLlmListConfigDTO
      - `prompts` array[], required — The list of prompts applied on the audio transcription
        - unknown[]
          - unknown
      - `model` string — The model to use for the prompt execution. You can find the list of supported models [here](https://openrouter.ai/models).
    - `pii_redaction` boolean — Enable PII redaction for this audio
    - `pii_redaction_config` PiiRedactionConfigDTO
      - `entity_types` 'APPI' | 'APPI_SENSITIVE' | 'CCI' | 'CORE_ENTITIES' | 'CPRA' | 'GDPR' | 'GDPR_SENSITIVE' | 'HEALTH_INFORMATION' | 'HIPAA_SAFE_HARBOR' | 'LIDI' | 'NUMERICAL_EXCL_PCI' | 'PCI' | 'QUEBEC_PRIVACY_ACT' | 'ACCOUNT_NUMBER' | 'AGE' | 'DATE' | 'DATE_INTERVAL' | 'DOB' | 'DRIVER_LICENSE' | 'DURATION' | 'EMAIL_ADDRESS' | 'EVENT' | 'FILENAME' | 'GENDER' | 'HEALTHCARE_NUMBER' | 'IP_ADDRESS' | 'LANGUAGE' | 'LOCATION' | 'LOCATION_ADDRESS' | 'LOCATION_ADDRESS_STREET' | 'LOCATION_CITY' | 'LOCATION_COORDINATE' | 'LOCATION_COUNTRY' | 'LOCATION_STATE' | 'LOCATION_ZIP' | 'MARITAL_STATUS' | 'MONEY' | 'NAME' | 'NAME_FAMILY' | 'NAME_GIVEN' | 'NAME_MEDICAL_PROFESSIONAL' | 'NUMERICAL_PII' | 'OCCUPATION' | 'ORGANIZATION' | 'ORGANIZATION_MEDICAL_FACILITY' | 'ORIGIN' | 'PASSPORT_NUMBER' | 'PASSWORD' | 'PHONE_NUMBER' | 'PHYSICAL_ATTRIBUTE' | 'POLITICAL_AFFILIATION' | 'RELIGION' | 'SEXUALITY' | 'SSN' | 'TIME' | 'URL' | 'USERNAME' | 'VEHICLE_ID' | 'ZODIAC_SIGN' | 'BLOOD_TYPE' | 'CONDITION' | 'DOSE' | 'DRUG' | 'INJURY' | 'MEDICAL_PROCESS' | 'STATISTICS' | 'BANK_ACCOUNT' | 'CREDIT_CARD' | 'CREDIT_CARD_EXPIRATION' | 'CVV' | 'ROUTING_NUMBER' | 'CORPORATE_ACTION' | 'DAY' | 'EFFECT' | 'FINANCIAL_METRIC' | 'MEDICAL_CODE' | 'MONTH' | 'ORGANIZATION_ID' | 'PRODUCT' | 'PROJECT' | 'TREND' | 'YEAR' — The entity types to redact
      - `processed_text_type` 'MARKER' | 'MASK' — The type of processed text to return (marker or mask)
    - `sentences` boolean — Enable sentences for this audio
    - `punctuation_enhanced` boolean — **[Alpha]** Use enhanced punctuation for this audio
    - `language_config` LanguageConfig
      - `languages` TranscriptionLanguageCodeEnum[] — If one language is set, it will be used for the transcription. Otherwise, language will be auto-detected by the model.
      - `code_switching` boolean — If true, language will be auto-detected on each utterance. Otherwise, language will be auto-detected on first utterance and then used for the rest of the transcription. If one language is set, this option will be ignored.
    - `audio_url` string, uri, nullable, required
  - `result` TranscriptionResultDTO
    - `metadata` TranscriptionMetadataDTO, required
      - `audio_duration` number, required — Duration of the transcribed audio file
      - `number_of_distinct_channels` integer, required — Number of distinct channels in the transcribed audio file
      - `billing_time` number, required — Billed duration in seconds (audio_duration * number_of_distinct_channels)
      - `transcription_time` number, required — Duration of the transcription in seconds
    - `transcription` TranscriptionDTO
      - `full_transcript` string, required — All transcription on text format without any other information
      - `languages` TranscriptionLanguageCodeEnum[], required — All the detected languages in the audio sorted from the most detected to the less detected
      - `sentences` SentencesDTO[] — If `sentences` has been enabled, sentences results
        - `success` boolean, required — The audio intelligence model succeeded to get a valid output
        - `is_empty` boolean, required — The audio intelligence model returned an empty value
        - `exec_time` number, required — Time audio intelligence model took to complete the task
        - `error` AddonErrorDTO, required
          - `status_code` integer, required — Status code of the addon error
          - `exception` string, required — Reason of the addon error
          - `message` string, required — Detailed message of the addon error
        - `results` string[], nullable, required — If `sentences` has been enabled, transcription as sentences.
      - `subtitles` SubtitleDTO[] — If `subtitles` has been enabled, subtitles results
        - `format` 'srt' | 'vtt', required — Subtitles formats you want your transcription to be formatted to
        - `subtitles` string, required — Transcription on the asked subtitle format
      - `utterances` UtteranceDTO[], required — Transcribed speech utterances present in the audio
        - `start` number, required — Start timestamp in seconds of this utterance
        - `end` number, required — End timestamp in seconds of this utterance
        - `confidence` number, required — Confidence on the transcribed utterance (1 = 100% confident)
        - `channel` integer, required — Audio channel of where this utterance has been transcribed from
        - `speaker` integer — If `diarization` enabled, speaker identification number
        - `words` WordDTO[], required — List of words of the utterance, split by timestamp
          - `word` string, required — Spoken word
          - `start` number, required — Start timestamps in seconds of the spoken word
          - `end` number, required — End timestamps in seconds of the spoken word
          - `confidence` number, required — Confidence on the transcribed word (1 = 100% confident)
        - `text` string, required — Transcription for this utterance
        - `language` 'af' | 'am' | 'ar' | 'as' | 'az' | 'ba' | 'be' | 'bg' | 'bn' | 'bo' | 'br' | 'bs' | 'ca' | 'cs' | 'cy' | 'da' | 'de' | 'el' | 'en' | 'es' | 'et' | 'eu' | 'fa' | 'fi' | 'fo' | 'fr' | 'gl' | 'gu' | 'ha' | 'haw' | 'he' | 'hi' | 'hr' | 'ht' | 'hu' | 'hy' | 'id' | 'is' | 'it' | 'ja' | 'jw' | 'ka' | 'kk' | 'km' | 'kn' | 'ko' | 'la' | 'lb' | 'ln' | 'lo' | 'lt' | 'lv' | 'mg' | 'mi' | 'mk' | 'ml' | 'mn' | 'mr' | 'ms' | 'mt' | 'my' | 'ne' | 'nl' | 'nn' | 'no' | 'oc' | 'pa' | 'pl' | 'ps' | 'pt' | 'ro' | 'ru' | 'sa' | 'sd' | 'si' | 'sk' | 'sl' | 'sn' | 'so' | 'sq' | 'sr' | 'su' | 'sv' | 'sw' | 'ta' | 'te' | 'tg' | 'th' | 'tk' | 'tl' | 'tr' | 'tt' | 'uk' | 'ur' | 'uz' | 'vi' | 'yi' | 'yo' | 'zh', required — Specify the language in which it will be pronounced when sound comparison occurs. Default to transcription language.
    - `translation` TranslationDTO
      - `success` boolean, required — The audio intelligence model succeeded to get a valid output
      - `is_empty` boolean, required — The audio intelligence model returned an empty value
      - `exec_time` number, required — Time audio intelligence model took to complete the task
      - `error` AddonErrorDTO, required
        - `status_code` integer, required — Status code of the addon error
        - `exception` string, required — Reason of the addon error
        - `message` string, required — Detailed message of the addon error
      - `results` TranslationResultDTO[], nullable, required — List of translated transcriptions, one for each `target_languages`
        - `error` AddonErrorDTO, required
          - `status_code` integer, required — Status code of the addon error
          - `exception` string, required — Reason of the addon error
          - `message` string, required — Detailed message of the addon error
        - `full_transcript` string, required — All transcription on text format without any other information
        - `languages` TranslationLanguageCodeEnum[], required — All the detected languages in the audio sorted from the most detected to the less detected
        - `sentences` SentencesDTO[] — If `sentences` has been enabled, sentences results for this translation
          - `success` boolean, required — The audio intelligence model succeeded to get a valid output
          - `is_empty` boolean, required — The audio intelligence model returned an empty value
          - `exec_time` number, required — Time audio intelligence model took to complete the task
          - `error` AddonErrorDTO, required
            - `status_code` integer, required — Status code of the addon error
            - `exception` string, required — Reason of the addon error
            - `message` string, required — Detailed message of the addon error
          - `results` string[], nullable, required — If `sentences` has been enabled, transcription as sentences.
        - `subtitles` SubtitleDTO[] — If `subtitles` has been enabled, subtitles results for this translation
          - `format` 'srt' | 'vtt', required — Subtitles formats you want your transcription to be formatted to
          - `subtitles` string, required — Transcription on the asked subtitle format
        - `utterances` UtteranceDTO[], required — Transcribed speech utterances present in the audio
          - `start` number, required — Start timestamp in seconds of this utterance
          - `end` number, required — End timestamp in seconds of this utterance
          - `confidence` number, required — Confidence on the transcribed utterance (1 = 100% confident)
          - `channel` integer, required — Audio channel of where this utterance has been transcribed from
          - `speaker` integer — If `diarization` enabled, speaker identification number
          - `words` WordDTO[], required — List of words of the utterance, split by timestamp
            - `word` string, required — Spoken word
            - `start` number, required — Start timestamps in seconds of the spoken word
            - `end` number, required — End timestamps in seconds of the spoken word
            - `confidence` number, required — Confidence on the transcribed word (1 = 100% confident)
          - `text` string, required — Transcription for this utterance
          - `language` 'af' | 'am' | 'ar' | 'as' | 'az' | 'ba' | 'be' | 'bg' | 'bn' | 'bo' | 'br' | 'bs' | 'ca' | 'cs' | 'cy' | 'da' | 'de' | 'el' | 'en' | 'es' | 'et' | 'eu' | 'fa' | 'fi' | 'fo' | 'fr' | 'gl' | 'gu' | 'ha' | 'haw' | 'he' | 'hi' | 'hr' | 'ht' | 'hu' | 'hy' | 'id' | 'is' | 'it' | 'ja' | 'jw' | 'ka' | 'kk' | 'km' | 'kn' | 'ko' | 'la' | 'lb' | 'ln' | 'lo' | 'lt' | 'lv' | 'mg' | 'mi' | 'mk' | 'ml' | 'mn' | 'mr' | 'ms' | 'mt' | 'my' | 'ne' | 'nl' | 'nn' | 'no' | 'oc' | 'pa' | 'pl' | 'ps' | 'pt' | 'ro' | 'ru' | 'sa' | 'sd' | 'si' | 'sk' | 'sl' | 'sn' | 'so' | 'sq' | 'sr' | 'su' | 'sv' | 'sw' | 'ta' | 'te' | 'tg' | 'th' | 'tk' | 'tl' | 'tr' | 'tt' | 'uk' | 'ur' | 'uz' | 'vi' | 'yi' | 'yo' | 'zh', required — Specify the language in which it will be pronounced when sound comparison occurs. Default to transcription language.
    - `summarization` SummarizationDTO
      - `success` boolean, required — The audio intelligence model succeeded to get a valid output
      - `is_empty` boolean, required — The audio intelligence model returned an empty value
      - `exec_time` number, required — Time audio intelligence model took to complete the task
      - `error` AddonErrorDTO, required
        - `status_code` integer, required — Status code of the addon error
        - `exception` string, required — Reason of the addon error
        - `message` string, required — Detailed message of the addon error
      - `results` string, nullable, required — If `summarization` has been enabled, summary of the transcription
    - `moderation` ModerationDTO
      - `success` boolean, required — The audio intelligence model succeeded to get a valid output
      - `is_empty` boolean, required — The audio intelligence model returned an empty value
      - `exec_time` number, required — Time audio intelligence model took to complete the task
      - `error` AddonErrorDTO, required
        - `status_code` integer, required — Status code of the addon error
        - `exception` string, required — Reason of the addon error
        - `message` string, required — Detailed message of the addon error
      - `results` string, nullable, required — If `moderation` has been enabled, moderated transcription
    - `named_entity_recognition` NamedEntityRecognitionDTO
      - `success` boolean, required — The audio intelligence model succeeded to get a valid output
      - `is_empty` boolean, required — The audio intelligence model returned an empty value
      - `exec_time` number, required — Time audio intelligence model took to complete the task
      - `error` AddonErrorDTO, required
        - `status_code` integer, required — Status code of the addon error
        - `exception` string, required — Reason of the addon error
        - `message` string, required — Detailed message of the addon error
      - `results` NamedEntityRecognitionResult[], nullable, required — If `named_entity_recognition` has been enabled, the detected entities.
        - `entity_type` string, required
        - `text` string, required
        - `start` number, required
        - `end` number, required
    - `name_consistency` NamesConsistencyDTO
      - `success` boolean, required — The audio intelligence model succeeded to get a valid output
      - `is_empty` boolean, required — The audio intelligence model returned an empty value
      - `exec_time` number, required — Time audio intelligence model took to complete the task
      - `error` AddonErrorDTO, required
        - `status_code` integer, required — Status code of the addon error
        - `exception` string, required — Reason of the addon error
        - `message` string, required — Detailed message of the addon error
      - `results` string, nullable, required — Deprecated, If `name_consistency` has been enabled, Gladia will improve the consistency of the names across the transcription
    - `structured_data_extraction` StructuredDataExtractionDTO
      - `success` boolean, required — The audio intelligence model succeeded to get a valid output
      - `is_empty` boolean, required — The audio intelligence model returned an empty value
      - `exec_time` number, required — Time audio intelligence model took to complete the task
      - `error` AddonErrorDTO, required
        - `status_code` integer, required — Status code of the addon error
        - `exception` string, required — Reason of the addon error
        - `message` string, required — Detailed message of the addon error
      - `results` string, nullable, required — If `structured_data_extraction` has been enabled, results of the AI structured data extraction for the defined classes.
    - `sentiment_analysis` SentimentAnalysisDTO
      - `success` boolean, required — The audio intelligence model succeeded to get a valid output
      - `is_empty` boolean, required — The audio intelligence model returned an empty value
      - `exec_time` number, required — Time audio intelligence model took to complete the task
      - `error` AddonErrorDTO, required
        - `status_code` integer, required — Status code of the addon error
        - `exception` string, required — Reason of the addon error
        - `message` string, required — Detailed message of the addon error
      - `results` string, required — If `sentiment_analysis` has been enabled, Gladia will analyze the sentiments and emotions of the audio
    - `audio_to_llm` AudioToLlmListDTO
      - `success` boolean, required — The audio intelligence model succeeded to get a valid output
      - `is_empty` boolean, required — The audio intelligence model returned an empty value
      - `exec_time` number, required — Time audio intelligence model took to complete the task
      - `error` AddonErrorDTO, required
        - `status_code` integer, required — Status code of the addon error
        - `exception` string, required — Reason of the addon error
        - `message` string, required — Detailed message of the addon error
      - `results` AudioToLlmDTO[], nullable, required — If `audio_to_llm` has been enabled, results of the AI custom analysis
        - `success` boolean, required — The audio intelligence model succeeded to get a valid output
        - `is_empty` boolean, required — The audio intelligence model returned an empty value
        - `exec_time` number, required — Time audio intelligence model took to complete the task
        - `error` AddonErrorDTO, required
          - `status_code` integer, required — Status code of the addon error
          - `exception` string, required — Reason of the addon error
          - `message` string, required — Detailed message of the addon error
        - `results` AudioToLlmResultDTO, required
          - `prompt` string, nullable, required — The prompt used
          - `response` string, nullable, required — The result of the AI analysis
    - `sentences` SentencesDTO
      - `success` boolean, required — The audio intelligence model succeeded to get a valid output
      - `is_empty` boolean, required — The audio intelligence model returned an empty value
      - `exec_time` number, required — Time audio intelligence model took to complete the task
      - `error` AddonErrorDTO, required
        - `status_code` integer, required — Status code of the addon error
        - `exception` string, required — Reason of the addon error
        - `message` string, required — Detailed message of the addon error
      - `results` string[], nullable, required — If `sentences` has been enabled, transcription as sentences.
    - `display_mode` DisplayModeDTO
      - `success` boolean, required — The audio intelligence model succeeded to get a valid output
      - `is_empty` boolean, required — The audio intelligence model returned an empty value
      - `exec_time` number, required — Time audio intelligence model took to complete the task
      - `error` AddonErrorDTO, required
        - `status_code` integer, required — Status code of the addon error
        - `exception` string, required — Reason of the addon error
        - `message` string, required — Detailed message of the addon error
      - `results` string[], nullable, required — If `display_mode` has been enabled, proposes an alternative display output.
    - `chapterization` ChapterizationDTO
      - `success` boolean, required — The audio intelligence model succeeded to get a valid output
      - `is_empty` boolean, required — The audio intelligence model returned an empty value
      - `exec_time` number, required — Time audio intelligence model took to complete the task
      - `error` AddonErrorDTO, required
        - `status_code` integer, required — Status code of the addon error
        - `exception` string, required — Reason of the addon error
        - `message` string, required — Detailed message of the addon error
      - `results` object, nullable, required — If `chapterization` has been enabled, will generate chapters name for different parts of the given audio.
    - `diarization` DiarizationDTO
      - `success` boolean, required — The audio intelligence model succeeded to get a valid output
      - `is_empty` boolean, required — The audio intelligence model returned an empty value
      - `exec_time` number, required — Time audio intelligence model took to complete the task
      - `error` AddonErrorDTO, required
        - `status_code` integer, required — Status code of the addon error
        - `exception` string, required — Reason of the addon error
        - `message` string, required — Detailed message of the addon error
      - `results` UtteranceDTO[], required — [Deprecated] If `diarization` has been enabled, the diarization result will appear here
        - `start` number, required — Start timestamp in seconds of this utterance
        - `end` number, required — End timestamp in seconds of this utterance
        - `confidence` number, required — Confidence on the transcribed utterance (1 = 100% confident)
        - `channel` integer, required — Audio channel of where this utterance has been transcribed from
        - `speaker` integer — If `diarization` enabled, speaker identification number
        - `words` WordDTO[], required — List of words of the utterance, split by timestamp
          - `word` string, required — Spoken word
          - `start` number, required — Start timestamps in seconds of the spoken word
          - `end` number, required — End timestamps in seconds of the spoken word
          - `confidence` number, required — Confidence on the transcribed word (1 = 100% confident)
        - `text` string, required — Transcription for this utterance
        - `language` 'af' | 'am' | 'ar' | 'as' | 'az' | 'ba' | 'be' | 'bg' | 'bn' | 'bo' | 'br' | 'bs' | 'ca' | 'cs' | 'cy' | 'da' | 'de' | 'el' | 'en' | 'es' | 'et' | 'eu' | 'fa' | 'fi' | 'fo' | 'fr' | 'gl' | 'gu' | 'ha' | 'haw' | 'he' | 'hi' | 'hr' | 'ht' | 'hu' | 'hy' | 'id' | 'is' | 'it' | 'ja' | 'jw' | 'ka' | 'kk' | 'km' | 'kn' | 'ko' | 'la' | 'lb' | 'ln' | 'lo' | 'lt' | 'lv' | 'mg' | 'mi' | 'mk' | 'ml' | 'mn' | 'mr' | 'ms' | 'mt' | 'my' | 'ne' | 'nl' | 'nn' | 'no' | 'oc' | 'pa' | 'pl' | 'ps' | 'pt' | 'ro' | 'ru' | 'sa' | 'sd' | 'si' | 'sk' | 'sl' | 'sn' | 'so' | 'sq' | 'sr' | 'su' | 'sv' | 'sw' | 'ta' | 'te' | 'tg' | 'th' | 'tk' | 'tl' | 'tr' | 'tt' | 'uk' | 'ur' | 'uz' | 'vi' | 'yi' | 'yo' | 'zh', required — Specify the language in which it will be pronounced when sound comparison occurs. Default to transcription language.

## Other responses

- `401` — You don't have the permissions to access the pre recorded job
- `404` — The pre recorded job doesn't exist or has been deleted

---

[API](https://skmtc.net/gladia/apis/gladia-control-api.md) · [All operations](https://skmtc.net/gladia/apis/gladia-control-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/gladia/gladia-control-api/versions/8ec9ebfee489/schema)
