---
title: "ADE List Parse Jobs"
method: GET
path: "/v2/parse/jobs"
tags: ["Parse"]
---

# ADE List Parse Jobs

`GET /v2/parse/jobs`

## Query parameters

- `page` integer — Page number (0-indexed).
- `page_size` integer — Number of items per page.
- `status` string, nullable — Filter by job status.

## Response `200`

The caller's jobs, newest first

- object
  - `jobs` object[] — The caller's parse jobs for this page, newest first.
    - `job_id` string — The unique identifier for the parse job. Format: ``<service>-<26-character Crockford base32 ULID>`` matching ``^(parse|extract)-[0-9a-hjkmnp-tv-z]{26}$``. Opaque, server-minted, and stable for the life of the job — the same id is returned on the sync response, the async 202, and every poll. Treat it as opaque; older id formats remain accepted indefinitely and are never re-issued.
    - `status` 'pending' | 'processing' | 'completed' | 'failed' — The job's current status: ``pending``, ``processing``, ``completed``, or ``failed``.
    - `created_at` string, nullable — ISO-8601 timestamp for when the job was created.
    - `completed_at` string, nullable — ISO-8601 timestamp for when the job finished, if terminal.
    - `model_version` string, nullable — The model snapshot used to parse the document.
    - `failure_reason` string, nullable — The reason the job failed. Present only when ``status`` is ``failed``.
  - `page` integer — The 0-indexed page number.
  - `page_size` integer — Items per page.
  - `has_more` boolean — Whether more jobs exist beyond this page; request the next ``page`` to fetch them.

## Other responses

- `422` — Request validation failed.

---

[API](https://skmtc.net/landing-ai/apis/landingai-agentic-document-extraction-ade-api-v2-parse-and-e.md) · [All operations](https://skmtc.net/landing-ai/apis/landingai-agentic-document-extraction-ade-api-v2-parse-and-e/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/landing-ai/landingai-agentic-document-extraction-ade-api-v2-parse-and-e/revisions/b07477df91eb/schema)
