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: api.bird.com
Authorization: AccessKey YOUR_SECRET_TOKEN
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-30T09:20:10.035Z",
  "updatedAt": "2025-07-30T09:20:10.035Z"
}

curl "/workspaces/{workspaceId}/transcriptions/{channelId}" \
     -H 'Authorization: AccessKey YOUR_SECRET_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?