HEX
Server: Apache/2.4.61 (Ubuntu)
System: Linux hosting106 7.0.12-1-pve #1 SMP PREEMPT_DYNAMIC PMX 7.0.12-1 (2026-06-09T21:07Z) x86_64
User: clinicadentalargarate.com (1193)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: //usr/share/doc/awscli/examples/transcribe/get-transcription-job.rst
**To get information about a specific transcription job**

The following ``get-transcription-job`` example gets information about a specific transcription job. To access the transcription results, use the TranscriptFileUri parameter. Use the MediaFileUri parameter to see which audio file you transcribed with this job. You can use the Settings object to see the optional features you've enabled in the transcription job. ::

    aws transcribe get-transcription-job \
        --transcription-job-name your-transcription-job

Output::

    {
        "TranscriptionJob": {
            "TranscriptionJobName": "your-transcription-job",
            "TranscriptionJobStatus": "COMPLETED",
            "LanguageCode": "language-code",
            "MediaSampleRateHertz": 48000,
            "MediaFormat": "mp4",
            "Media": {
                "MediaFileUri": "s3://DOC-EXAMPLE-BUCKET/your-audio-file.file-extension"
            },
            "Transcript": {
                "TranscriptFileUri": "https://Amazon-S3-file-location-of-transcription-output"
            },
            "StartTime": "2020-09-18T22:27:23.970000+00:00",
            "CreationTime": "2020-09-18T22:27:23.948000+00:00",
            "CompletionTime": "2020-09-18T22:28:21.197000+00:00",
            "Settings": {
                "ChannelIdentification": false,
                "ShowAlternatives": false
            },
            "IdentifyLanguage": true,
            "IdentifiedLanguageScore": 0.8672199249267578
        }
    }

For more information, see `Getting Started (AWS Command Line Interface) <https://docs.aws.amazon.com/transcribe/latest/dg/getting-started-cli.html>`__ in the *Amazon Transcribe Developer Guide*.