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

# List Parse Jobs

`GET /api/v2/parse`

List parse jobs for the current project.

Filter by `status` or creation date range. Results are
paginated — use `page_token` from the response to fetch
subsequent pages.

## Query parameters

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

- ParseJobQueryResponse — Response schema for paginated parse job queries.
  - `items` ParseJobResponse[], required — The list of items.
    - `id` string, required — Unique parse job identifier
    - `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
    - `status` 'PENDING' | 'RUNNING' | 'COMPLETED' | 'FAILED' | 'CANCELLED', required — Current job status: PENDING, RUNNING, COMPLETED, FAILED, or CANCELLED
    - `error_message` string, nullable — Error details when status is FAILED
    - `name` string, nullable — Optional display name for this parse job
    - `tier` string, nullable — Parsing tier used for this job
  - `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)
