---
title: "List Classify Jobs"
method: GET
path: "/api/v2/classify"
tags: ["V2", "Classify"]
---

# List Classify Jobs

`GET /api/v2/classify`

List classify jobs with optional filtering and pagination.

Filter by `status`, `configuration_id`, specific `job_ids`,
or creation date range.

## Query parameters

- `page_size` integer, nullable — Number of items per page
- `page_token` string, nullable — Token for pagination
- `status` 'PENDING' | 'RUNNING' | 'COMPLETED' | 'FAILED', nullable — Filter by job status
- `job_ids` string[], nullable — Filter by specific job IDs
- `project_id` string, uuid, nullable
- `organization_id` string, uuid, nullable
- `configuration_id` string, nullable — Filter by configuration ID
- `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

- ClassifyV2JobQueryResponse — Response schema for paginated classify job queries.
  - `items` ClassifyV2JobResponse[], required — The list of items.
    - `id` union, required — Unique identifier
      - string
      - string, uuid
    - `created_at` string, date-time, nullable — Creation datetime
    - `updated_at` string, date-time, nullable — Update datetime
    - `file_input` string, required — ID of the input file or parse job
    - `project_id` string, required — Project this job belongs to
    - `user_id` string, required — User who created this job
    - `status` 'PENDING' | 'RUNNING' | 'COMPLETED' | 'FAILED', required — Current job status: PENDING, RUNNING, COMPLETED, or FAILED
    - `document_input_type` 'url' | 'file_id' | 'parse_job_id', required — Whether the input was a file or parse job (FILE or PARSE_JOB)
    - `configuration` ClassifyV2Configuration, required — Configuration for a classify job.
      - `rules` ClassifyV2Rule[], required — Classify rules to evaluate against the document (at least one required)
        - `type` string, required — Document type to assign when rule matches
        - `description` string, required — Natural language criteria for matching this rule
      - `mode` 'FAST' — Classify execution mode
      - `parsing_configuration` ClassifyV2ParsingConfiguration — Parsing configuration for classify jobs.
        - `lang` string — ISO 639-1 language code for the document
        - `target_pages` string, nullable — Comma-separated page numbers or ranges to process (1-based). Omit to process all pages.
        - `max_pages` integer, nullable — Maximum number of pages to process. Omit for no limit.
    - `result` ClassifyV2Result — Result of classifying a document.
      - `reasoning` string, required — Why the document matched (or didn't match) the returned rule
      - `confidence` number, required — Confidence score between 0.0 and 1.0
      - `type` string, nullable, required — Matched rule type, or null if no rule matched
    - `error_message` string, nullable — Error message if job failed
    - `configuration_id` string, nullable — Product configuration ID
    - `transaction_id` string, nullable — Idempotency key
    - `parse_job_id` string, nullable — Associated parse job ID
  - `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)
