List jobs
List the IDs of all jobs that have been run. If provided, at most max_results
job IDs will be included in the response. Use page_token
to paginate through the entire set of job IDs.
Query parameters
-
max_results integer(uint64)
-
page_token string
curl \
-X GET https://api.hume.ai/v0/batch/jobs
{
"next_page_token": "string",
"jobs": [
{
"request": {
"models": {
"face": {
"fps_pred": 3.0,
"prob_threshold": 0.9900000095367432,
"identify_faces": false,
"save_faces": false,
"min_face_size": 60.0,
"facs": {},
"descriptions": {}
},
"burst": {},
"prosody": {
"identify_speakers": false,
"language": "string"
},
"language": {
"identify_speakers": false,
"sentiment": {},
"toxicity": {},
"language": "string",
"granularity": "word",
"use_existing_partition": true
},
"ner": {
"identify_speakers": false,
"language": "string"
}
},
"urls": [
"string"
],
"notify": false
},
"status": "QUEUED",
"failed": {
"message": "string"
},
"completed": {
"predictions_url": "string",
"errors_url": "string",
"artifacts_url": "string",
"num_predictions": 42,
"num_errors": 42
},
"creation_timestamp": 42,
"completion_timestamp": 42
}
]
}