---
title: "List Split Jobs"
method: GET
path: "/api/v1/beta/split/jobs"
tags: ["Beta", "Split"]
---

# List Split Jobs

`GET /api/v1/beta/split/jobs`

List document split jobs.

## Query parameters

- `status` 'pending' | 'processing' | 'completed' | 'failed' | 'cancelled', nullable — Filter by job status (pending, processing, completed, failed, cancelled)
- `job_ids` string[], nullable — Filter by specific job IDs
- `project_id` string, uuid, nullable
- `organization_id` string, uuid, nullable
- `page_size` integer, nullable
- `page_token` string, nullable
- `created_at_on_or_after` string, date-time, nullable — Include items created at or after this timestamp (inclusive)
- `created_at_on_or_before` string, date-time, nullable — Include items created at or before this timestamp (inclusive)

## Cookies

- `session` string, nullable

## Response `200`

Successful Response

- SplitJobQueryResponse — Beta paginated list of split jobs.
  - `items` SplitJobResponse[], required — The list of items.
    - `id` string, required — Unique identifier for the split job.
    - `created_at` string, date-time, nullable — Creation datetime
    - `updated_at` string, date-time, nullable — Update datetime
    - `project_id` string, required — Project ID this job belongs to.
    - `user_id` string, required — User ID who created this job.
    - `configuration_id` string, nullable — Split configuration ID used for this job.
    - `document_input` SplitDocumentInput, required — Document input specification for beta API.
      - `type` string, required — Type of document input. Valid values are: file_id
      - `value` string, required — Document identifier.
    - `categories` SplitCategory[], required — Categories used for splitting.
      - `name` string, required — Name of the category.
      - `description` string, nullable — Optional description of what content belongs in this category.
    - `status` string, required — Current status of the job. Valid values are: pending, processing, completed, failed, cancelled.
    - `result` SplitResultResponse — Result of a completed split job.
      - `segments` SplitSegmentResponse[], required — List of document segments.
        - `category` string, required — Category name this split belongs to.
        - `pages` integer[], required — 1-indexed page numbers in this split.
        - `confidence_category` string, required — Categorical confidence level. Valid values are: high, medium, low.
    - `error_message` string, nullable — Error message if the job failed.
  - `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/revisions/b17341164de9/schema)
