Get transcript
Lấy lại (truy xuất) một transcript đã được tạo trước đó bằng transcriptId
curl https://api.vbee.vn/api/v1/stt/transcripts/job-uuid-456 \
-H "Authorization: Bearer <token>" \
-H "App-ID: <app-id>"Last updated
// Response khi COMPLETE
{
"transcriptId": "job-uuid-456",
"status": "COMPLETED",
"transcript": "nội dung toàn bộ file audio",
"utterances": [
{
"text": "câu đầu tiên",
"startTime": 0.1,
"endTime": 3.8
},
{
"text": "câu thứ hai",
"startTime": 4.2,
"endTime": 7.5
}
],
"audioDurationSeconds": 8
}