List Transcriptions
In order to retrieve all transcriptions in your workspace you can use this request.
GET
/workspaces/{workspaceId}/transcriptions
List transcriptions
Parámetros de consulta
limit
integer
Limits the number of results to return.
pageToken
string
The cursor that keeps track of the current position in the results.
Cuerpo de la respuesta
results
array of object
Mostrar atributos secundarios
results.id
string
obligatorio
The ID for the transcription.
results.recordingId
string
obligatorio
The ID for the recording.
results.status
string
obligatorio
Possible values: accepted, ongoing, available, absent, failed
results.stereo
boolean
obligatorio
results.locale
string
obligatorio
Curated set of BCP47 locale identifiers supported by Bird speech-to-text products
Possible values: ar-AE, ar-SA, cmn-CN, cy-GB, da-DK, de-CH, de-DE, el-GR, en-AU, en-GB, en-GB-WLS, en-IE, en-IN, en-NZ, en-US, en-ZA, es-ES, es-MX, es-US, fr-CA, fr-FR, he-IL, hi-IN, id-ID, is-IS, it-IT, ja-JP, ko-KR, ms-MY, nb-NO, nl-NL, pl-PL, pt-BR, pt-PT, ro-RO, ru-RU, sv-SE, ta-IN, te-IN, th-TH, tr-TR, vi-VN, zh-CN, zh-HK, zh-TW, arb, af-ZA, bn-IN, ca-ES, cmn-TW, cs-CZ, fi-FI, fil-PH, gu-IN, hu-HU, kn-IN, lt-LT, lv-LV, ml-IN, mr-IN, pa-IN, sk-SK, sr-RS, uk-UA, yue-HK, no-NO
results.url
string
results.summary
string
results.createdAt
string
obligatorio
results.updatedAt
string
obligatorio
nextPageToken
string
The token that can be passed as pageToken in URL to retrieve the next set of results. If missing, no more results to display.
Ejemplo de código
curl -X GET 'https://api.bird.com/workspaces/{workspaceId}/transcriptions' \
-H 'Authorization: AccessKey YOUR_ACCESS_KEY'Ejemplo de código
curl "/workspaces/{workpaceId}/transcriptions" \
-H 'Authorization: AccessKey YOUR_SECRET_TOKEN'
Ejemplo de código
{
"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"
}
]
}