List Batch Job Items
GET/api/v1/beta/batch-processing/{job_id}/items
List items in a batch job with optional status filtering.
Useful for finding failed items, viewing completed items, or debugging processing issues.
List Batch Job Items
curl https://api.cloud.llamaindex.ai/api/v1/beta/batch-processing/$JOB_ID/items \
-H "Authorization: Bearer $LLAMA_CLOUD_API_KEY"{
"items": [
{
"item_id": "item_id",
"item_name": "item_name",
"status": "pending",
"completed_at": "2019-12-27T18:11:19.117Z",
"effective_at": "2019-12-27T18:11:19.117Z",
"error_message": "error_message",
"job_id": "job_id",
"job_record_id": "job_record_id",
"skip_reason": "skip_reason",
"started_at": "2019-12-27T18:11:19.117Z"
}
],
"next_page_token": "next_page_token",
"total_size": 0
}Returns Examples
{
"items": [
{
"item_id": "item_id",
"item_name": "item_name",
"status": "pending",
"completed_at": "2019-12-27T18:11:19.117Z",
"effective_at": "2019-12-27T18:11:19.117Z",
"error_message": "error_message",
"job_id": "job_id",
"job_record_id": "job_record_id",
"skip_reason": "skip_reason",
"started_at": "2019-12-27T18:11:19.117Z"
}
],
"next_page_token": "next_page_token",
"total_size": 0
}