Sample - Twilio API
GET/2010-04-01/Accounts/{AccountSid}/Recordings/{RecordingSid}/Transcriptions/{Sid}.json

Retrieve a recording transcription

Retrieves one transcription created from a recording. Supply the account, recording, and transcription SIDs to inspect its status, transcript text, duration, pricing, and creation metadata.

  • RetriesRetries up to 2×, 500ms backoff, 30s timeout.

3 parameters
AccountSidstringrequired
The account SID that owns the transcription. Must be 34 characters and match the `AC` SID format.
RecordingSidstringrequired
The recording SID from which the transcription was created. Must be 34 characters and match the `RE` SID format.
Sidstringrequired
The unique transcription SID to retrieve. Must be 34 characters and match the `TR` SID format.

1 status code
200Returns the transcription object with its recording reference, processing status, transcript text, duration, price, currency, type, timestamps, and resource URI.
account_sidstringoptional
The SID of the [Account](https://www.twilio.com/docs/iam/api/account) that created the Transcription resource.
api_versionstringoptional
The API version used to create the transcription.
date_createdstringoptional
The date and time in GMT that the resource was created specified in [RFC 2822](https://www.ietf.org/rfc/rfc2822.txt) format.
date_updatedstringoptional
The date and time in GMT that the resource was last updated specified in [RFC 2822](https://www.ietf.org/rfc/rfc2822.txt) format.
durationstringoptional
The duration of the transcribed audio in seconds.
pricenumberoptional
The charge for the transcript in the currency associated with the account. This value is populated after the transcript is complete so it may not be available immediately.
price_unitstringoptional
The currency in which `price` is measured, in [ISO 4127](https://www.iso.org/iso/home/standards/currency_codes.htm) format (e.g. `usd`, `eur`, `jpy`).
recording_sidstringoptional
The SID of the [Recording](https://www.twilio.com/docs/voice/api/recording) from which the transcription was created.
sidstringoptional
The unique string that that we created to identify the Transcription resource.
statusstringoptional
The status of the transcription. Can be: `in-progress`, `completed`, `failed`.
Allowed:in-progresscompletedfailed
transcription_textstringoptional
The text content of the transcription.
typestringoptional
The transcription type.
uristringoptional
The URI of the resource, relative to `https://api.twilio.com`.

Error handling

AccountSid must be a 34-character account SID beginning with AC, RecordingSid must be a 34-character recording SID beginning with RE, and Sid must be a 34-character transcription SID beginning with TR. The SIDs must identify the transcription within the specified account and recording hierarchy.