Get Batch Job Status
GET/api/v1/beta/batch-processing/{job_id}
Get detailed status of a batch processing job.
Returns current progress, file counts, and estimated completion time.
Path Parameters
job_id: string
Query Parameters
organization_id: optional string
project_id: optional string
Cookie Parameters
session: optional string
Returns
Get Batch Job Status
curl https://api.cloud.llamaindex.ai/api/v1/beta/batch-processing/$JOB_ID \
-H "Authorization: Bearer $LLAMA_CLOUD_API_KEY"{
"job": {
"id": "id",
"job_type": "parse",
"project_id": "project_id",
"status": "pending",
"total_items": 0,
"completed_at": "2019-12-27T18:11:19.117Z",
"created_at": "2019-12-27T18:11:19.117Z",
"directory_id": "directory_id",
"effective_at": "2019-12-27T18:11:19.117Z",
"error_message": "error_message",
"failed_items": 0,
"job_record_id": "job_record_id",
"processed_items": 0,
"skipped_items": 0,
"started_at": "2019-12-27T18:11:19.117Z",
"updated_at": "2019-12-27T18:11:19.117Z",
"workflow_id": "workflow_id"
},
"progress_percentage": 0
}Returns Examples
{
"job": {
"id": "id",
"job_type": "parse",
"project_id": "project_id",
"status": "pending",
"total_items": 0,
"completed_at": "2019-12-27T18:11:19.117Z",
"created_at": "2019-12-27T18:11:19.117Z",
"directory_id": "directory_id",
"effective_at": "2019-12-27T18:11:19.117Z",
"error_message": "error_message",
"failed_items": 0,
"job_record_id": "job_record_id",
"processed_items": 0,
"skipped_items": 0,
"started_at": "2019-12-27T18:11:19.117Z",
"updated_at": "2019-12-27T18:11:19.117Z",
"workflow_id": "workflow_id"
},
"progress_percentage": 0
}