List Transcription Files
GET
{endpoint}conversions
Example Request
curl -X GET \
"{endpoint}conversions"
-H 'Authorization: Bearer 6413a1acf4df6c41d028d0970ecc8b28' \
Example Response
{
"rows": {
"current_page": 1,
"data": [
{
"id": "f84f5bf3-6374-4ecf-8aa6-b6339a5173d6",
"name": "from api audio",
"duration": "00:01:55",
"language": null,
"audio": "https://console.wavel.ai/storage/sounds/20190832/f84f5bf3-6374-4ecf-8aa6-b6339a5173d6.mp3",
"created_at": "2019-08-07 16:53:41",
"updated_at": "2019-08-07 16:53:53",
"status": 0,
"status_name": "submitted"
},
...
],
"first_page_url": "{endpoint}conversions?page=1",
"from": 1,
"last_page": 1,
"last_page_url": "{endpoint}conversions?page=1",
"next_page_url": null,
"path": "{endpoint}conversions",
"per_page": 15,
"prev_page_url": null,
"to": 6,
"total": 6
}
}
Response Description
| Name |
Descriptions |
| id |
Transcription id |
| name |
Transcription name |
| duration |
Total duration of the transcription |
| language |
Language of the transcription |
| audio |
Audio file url |
| status |
Transcription Status |
| status_name |
Transcription Status Name |
Status Description
| Code |
value |
Descriptions |
| 0 |
submitted |
Transcrion in submit state |
| 1 |
completed |
Transcrion is completed and ready to download |
| 2 |
processing |
Transcrion in under process |
| 5 |
failed |
Audo Transcrion in failed. Should try again |