List Transcriptions
In order to retrieve all transcriptions in your workspace you can use this request.
List transcriptions
Authorizations
Path parameters
workspaceIdstringRequired
Query parameters
limitinteger · min: 1 · max: 99OptionalDefault:
Limits the number of results to return
10pageTokenstring · max: 8000Optional
Pagination token that keeps of track of the current position in the list
Responses
200
OK
application/json
Responseall of
404
Not found
application/json
get
/workspaces/{workspaceId}/transcriptionsGET /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-11-07T19:41:12.198Z",
"updatedAt": "2025-11-07T19:41:12.198Z"
}
],
"nextPageToken": "text"
}curl "/workspaces/{workpaceId}/transcriptions" \
-H 'Authorization: AccessKey YOUR_SECRET_TOKEN'{
"results": [
{
"id": "7f1e9ce1-95db-4a39-80f4-9bde69908c53",
"recordingId": "5b74ee9e-9d45-473a-82cd-f1f7feea6bbd",
"status": "available",
"stereo": false,
"locale": "en-US",
"createdAt": "2023-10-23T15:55:38.888Z",
"updatedAt": "2023-10-23T15:55:47.439Z"
},
{
"id": "ac5fb7ec-625f-48f1-ae4a-ccee9cc4be93",
"recordingId": "6b0ea138-7f07-4c10-bcf2-d2522a481059",
"status": "available",
"stereo": false,
"locale": "en-US",
"createdAt": "2023-10-23T15:52:21.928Z",
"updatedAt": "2023-10-23T15:52:30.849Z"
}
]
}Last updated
Was this helpful?

