Result format
This section describes the result format for the qwen3-asr-flash-filetrans model. For Fun-ASR models, see Fun-ASR result format.
When the status is SUCCEEDED, transcription_url contains a JSON download link valid for 24 hours. After that, you can no longer query the task or download the result.
Result file structure:
| Field | Type | Description |
|---|---|---|
| file_url | string | Audio file URL. |
| audio_info.format | string | Audio format. |
| audio_info.sample_rate | integer | Audio sampling rate. |
| transcripts | array | Results per audio track. |
Transcript object
| Field | Type | Description |
|---|---|---|
| channel_id | integer | Track index, starting from 0. |
| text | string | Recognized text. |
| sentences | array | Sentence-level results. |
Sentence object
| Field | Type | Description |
|---|---|---|
| sentence_id | integer | Sentence index, starting from 0. |
| begin_time | integer | Start timestamp (ms). |
| end_time | integer | End timestamp (ms). |
| text | string | Recognized text. |
| language | string | Detected language. Values: zh, yue, en, ja, de, ko, ru, fr, pt, ar, it, es, hi, id, th, tr, uk, vi, cs, da, fil, fi, is, ms, no, pl, sv. |
| emotion | string | Detected emotion. Values: surprised, neutral, happy, sad, disgusted, angry, fearful. |
| words | array | Word-level results. Returned only when enable_words is true. |
Word object
| Field | Type | Description |
|---|---|---|
| begin_time | integer | Start timestamp (ms). |
| end_time | integer | End timestamp (ms). |
| text | string | Recognized text. |
| punctuation | string | Punctuation mark. |
Result example
Authorizations
string
header
required
DashScope API key. Get your API key from Qwen Cloud console.
Header Parameters
enum<string>
required
Must be set to enable.
enable
Path Parameters
string
required
The ID of the task returned by the Submit transcription task operation.