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
10
pageTokenstring · 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
GET /workspaces/{workspaceId}/transcriptions HTTP/1.1
Host:
Authorization: Bearer jwt
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-07-03T22:22:33.293Z",
"updatedAt": "2025-07-03T22:22:33.293Z"
}
],
"nextPageToken": "text"
}
curl "/workspaces/{workpaceId}/transcriptions" \
-H 'Authorization: Bearer {Token}'
Last updated
Was this helpful?