Skip to main content
GET
/
v1
/
ambient
/
api
/
transcribe
/
{transcription_id}
Get transcription
curl -sS https://rcm-api.athelas.com/v1/ambient/api/transcribe/456 -H 'Authorization: Bearer $TOKEN'
{
  "id": 123,
  "task_status": "<string>",
  "raw_text": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z",
  "workflow_id": 123,
  "error_message": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

transcription_id
integer
required

Response

200 - application/json

Transcription record

id
integer
required
task_status
string
required

Status values for transcription tasks:

  • DETECTED_FILE: Audio file has been queued to enter the speech-to-text pipeline.
  • STT_PROCESSING: Speech-to-text is actively transcribing the audio.
  • STT_COMPLETED: Speech-to-text processing finished successfully and produced a full transcript.
  • STT_ERROR: Speech-to-text run failed and needs investigation or retry.
  • STT_INCOMPLETE: Speech-to-text run ended without producing a complete transcript (partial or truncated output).
raw_text
string | null
created_at
string<date-time> | null
updated_at
string<date-time> | null
workflow_id
integer | null
error_message
string | null