List Transcriptions

In order to retrieve all transcriptions in your workspace you can use this request.

List transcriptions

get

List transcriptions

Authorizations
Path parameters
workspaceIdstringRequired
Query parameters
limitinteger · min: 1 · max: 99Optional

Limits the number of results to return

Default: 10
pageTokenstring · max: 8000Optional

Pagination token that keeps of track of the current position in the list

Responses
200

OK

application/json
Responseall of
get
GET /workspaces/{workspaceId}/transcriptions HTTP/1.1
Host: api.bird.com
Authorization: AccessKey YOUR_SECRET_TOKEN
Accept: */*
{
  "results": [
    {
      "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-08-07T15:08:08.443Z",
      "updatedAt": "2025-08-07T15:08:08.443Z"
    }
  ],
  "nextPageToken": "text"
}
curl "/workspaces/{workpaceId}/transcriptions" \
     -H 'Authorization: AccessKey YOUR_SECRET_TOKEN'

Last updated

Was this helpful?