Get List of Jobs
GET {{baseUrl}}/speechtotext/v1/jobs
Gets a list of transcription jobs submitted within the last 30 days in reverse chronological order up to the provided limit
number of jobs per call. Note: Jobs older than 30 days will not be listed. Pagination is supported via passing the last job id
from a previous call into starting_after
.
Request Params
Key | Datatype | Required | Description |
---|---|---|---|
limit | string | (Optional) Limits the number of jobs returned, default is 100, max is 1000 | |
starting_after | string | (Optional) If specified, returns jobs submitted before the job with this ID, exclusive (i.e. job with this ID is not included) |
RESPONSES
status: OK
[{"id":"Lr694KPg1ibR","created_on":"2021-01-03T00:05:30.000Z","completed_on":"2021-01-03T00:10:30.000Z","name":"example3.mp3","media_url":"https://www.example.com/audio3.mp3","callback_url":"https://www.example.com/callback","status":"transcribed","duration_seconds":107,"type":"async","delete_after_seconds":120,"language":"en"},{"id":"MmFagMtRMqtt","created_on":"2021-01-02T00:05:30.000Z","completed_on":"2021-01-02T00:10:30.000Z","name":"example2.mp3","media_url":"https://www.example.com/audio2.mp3","status":"transcribed","duration_seconds":40,"type":"async","language":"es"}]