---
title: "List Batch Jobs"
method: GET
path: "/api/v1/beta/batch-processing"
tags: ["Beta", "Batch Processing"]
---

# List Batch Jobs

`GET /api/v1/beta/batch-processing`

List batch processing jobs with optional filtering.

Filter by `directory_id`, `job_type`, or `status`. Results
are paginated with configurable `limit` and `offset`.

## Query parameters

- `directory_id` string, nullable — Filter by directory ID
- `job_type` 'parse' | 'extract' | 'classify' — Type of batch processing operation.
- `status` 'pending' | 'running' | 'dispatched' | 'completed' | 'failed' | 'cancelled' — Status of a batch processing job.
- `limit` integer — Maximum number of jobs to return
- `offset` integer — Number of jobs to skip for pagination
- `project_id` string, uuid, nullable
- `organization_id` string, uuid, nullable

## Cookies

- `session` string, nullable

## Response `200`

Successful Response

- BatchJobQueryResponse — Response schema for paginated batch job queries.
  - `items` BatchJobResponse[], required — The list of items.
    - `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
  - `next_page_token` string, nullable — A token, which can be sent as page_token to retrieve the next page. If this field is omitted, there are no subsequent pages.
  - `total_size` integer, nullable — The total number of items available. This is only populated when specifically requested. The value may be an estimate and can be used for display purposes only.

## 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)
