Batch

Get job details

GET
Get the request details and state of a given job.

Path parameters

idstringRequired

Response

This endpoint returns a union
EMBEDDING GENERATION
OR
INFERENCE
OR
TL INFERENCE
OR
TRAINING
GET
$curl https://api.hume.ai/v0/batch/jobs/job_id \
> -H "X-Hume-Api-Key: <apiKey>"
Response
1{
2 "type": "EMBEDDING_GENERATION",
3 "job_id": "string",
4 "request": {
5 "registry_file_details": [
6 {
7 "file_id": "string",
8 "file_url": "string"
9 }
10 ]
11 },
12 "state": {
13 "status": "QUEUED",
14 "created_timestamp_ms": 0
15 },
16 "user_id": "string"
17}