Get a Transcription

In order to retrieve a transcription metada, you can use the following endpoint.

Get transcription

get

Get transcription

Authorizations
Path parameters
workspaceIdstringRequired
transcriptionIdstringRequired
Query parameters
formatstring · enumOptionalPossible values:
Responses
200
The transcription metadata
application/json
get
GET /workspaces/{workspaceId}/transcriptions/{transcriptionId} HTTP/1.1
Host: 
Authorization: Bearer jwt
Accept: */*
{
  "id": "123e4567-e89b-12d3-a456-426614174000",
  "recordingId": "123e4567-e89b-12d3-a456-426614174000",
  "status": "accepted",
  "stereo": true,
  "locale": "en-US",
  "url": "text",
  "summary": "text",
  "createdAt": "2025-07-10T02:16:45.565Z",
  "updatedAt": "2025-07-10T02:16:45.565Z"
}

curl "/workspaces/{workspaceId}/transcriptions/{channelId}" \
     -H 'Authorization: Bearer {Token}'

To get the transcription content you use the endpoint for your preferred format:

  • GET /workspaces/{workspaceId}/transcriptions/{transcriptionId}.json

  • GET /workspaces/{workspaceId}/transcriptions/{transcriptionId}.srt

  • GET /workspaces/{workspaceId}/transcriptions/{transcriptionId}.vtt

  • GET /workspaces/{workspaceId}/transcriptions/{transcriptionId}.txt

Last updated

Was this helpful?