---
title: "Get Batch Job Status"
method: GET
path: "/api/v1/beta/batch-processing/{job_id}"
tags: ["Beta", "Batch Processing"]
---

# Get Batch Job Status

`GET /api/v1/beta/batch-processing/{job_id}`

Get detailed status of a batch processing job.

Returns current progress percentage, file counts (total,
processed, failed, skipped), and timestamps.

## Path parameters

- `job_id` string, required

## Query parameters

- `project_id` string, uuid, nullable
- `organization_id` string, uuid, nullable

## Cookies

- `session` string, nullable

## Response `200`

Successful Response

- BatchJobStatusResponse — Detailed status response for a batch processing job.
  - `job` BatchJobResponse, required — Response schema for a batch processing job.
    - `status` 'pending' | 'running' | 'dispatched' | 'completed' | 'failed' | 'cancelled', required — Status of a batch processing job.
    - `effective_at` string, date-time
    - `job_record_id` string, nullable — The job record ID associated with this status, if any.
    - `error_message` string, nullable — Error message for the latest job attempt, if any.
    - `id` string, required — Unique identifier for the batch job
    - `created_at` string, date-time, nullable — Creation datetime
    - `updated_at` string, date-time, nullable — Update datetime
    - `project_id` string, required — Project this job belongs to
    - `directory_id` string, nullable — Directory being processed
    - `job_type` 'parse' | 'extract' | 'classify', required — Type of batch processing operation.
    - `total_items` integer, required — Total number of items in the job
    - `processed_items` integer — Number of items processed so far
    - `failed_items` integer — Number of items that failed processing
    - `skipped_items` integer — Number of items skipped (already processed or size limit)
    - `workflow_id` string, nullable — Async job tracking ID
    - `started_at` string, date-time, nullable — Timestamp when job processing started
    - `completed_at` string, date-time, nullable — Timestamp when job completed
  - `progress_percentage` number, required — Percentage of items processed (0-100)

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/run-llama/apis/llama-platform.md) · [All operations](https://skmtc.net/run-llama/apis/llama-platform/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/run-llama/llama-platform/versions/b17341164de9/schema)
