Skip to main content
GET
/
api
/
v1
/
transcriptions
/
{id}
/
transcript
Get the transcript text for a transcription
curl --request GET \
  --url https://www.api.vook.ai/api/v1/transcriptions/{id}/transcript
{
  "plain_text": "Hello world. This is a transcription.",
  "word_count": 1250,
  "transcription": [
    {
      "children": [
        {
          "text": "Hello world",
          "startTimeSeconds": 1.2,
          "endTimeSeconds": 3.4,
          "bold": true,
          "italic": true,
          "underline": true,
          "strikethrough": true,
          "highlight": true,
          "noSpaceBefore": true
        }
      ],
      "speakerKey": "SPEAKER_00",
      "startTimeSeconds": 5
    }
  ]
}

Path Parameters

id
string
required

Transcription ID

Response

200 - application/json

Transcript paragraphs + plain text (null fields when not ready)

plain_text
string | null

Plain text version of the transcript (null when not ready)

Example:

"Hello world. This is a transcription."

word_count
number | null

Total word count of the transcript

Example:

1250

transcription
object[] | null

Structured transcript paragraphs (null when not ready)