List Transcriptions
In order to retrieve all transcriptions in your workspace you can use this request.
GET
/workspaces/{workspaceId}/transcriptions
List transcriptions
Parameter query
limit
integer
Limits the number of results to return.
pageToken
string
The cursor that keeps track of the current position in the results.
Payload respons
results
array of object
Tampilkan atribut turunan
results.id
string
wajib
The ID for the transcription.
results.recordingId
string
wajib
The ID for the recording.
results.status
string
wajib
Possible values: accepted, ongoing, available, absent, failed
results.stereo
boolean
wajib
results.locale
string
wajib
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
wajib
results.updatedAt
string
wajib
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.
Contoh kode
curl -X GET 'https://api.bird.com/workspaces/{workspaceId}/transcriptions' \
-H 'Authorization: AccessKey YOUR_ACCESS_KEY'Contoh kode
curl "/workspaces/{workpaceId}/transcriptions" \
-H 'Authorization: AccessKey YOUR_SECRET_TOKEN'
Contoh kode
{
"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"
}
]
}