> ## Documentation Index
> Fetch the complete documentation index at: https://docs.landing.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# ADE List Parse Jobs



## OpenAPI

````yaml /dpt3/openapi-adev2.json get /v2/parse/jobs
openapi: 3.1.0
info:
  title: >-
    LandingAI Agentic Document Extraction (ADE) API v2: Parse and Extract
    Documents with DPT-3
  description: >-
    Parse and extract data from documents with DPT-3, a document parsing model
    from LandingAI, using the Agentic Document Extraction (ADE) v2 endpoints.
    Parse converts PDFs and images into structured Markdown and elements with
    per-element grounding (page numbers and coordinates) for RAG, search, and
    extraction pipelines. Extract pulls specific fields from parsed Markdown
    using a JSON schema. Documentation: https://docs.landing.ai
  version: 1.0.0
servers:
  - url: https://api.ade.landing.ai
    description: Production vision tools API
security: []
paths:
  /v2/parse/jobs:
    get:
      tags:
        - Parse
      summary: ADE List Parse Jobs
      operationId: parse_list_jobs
      parameters:
        - name: page
          in: query
          required: false
          schema:
            type: integer
            minimum: 0
            description: Page number (0-indexed).
            default: 0
            title: Page
          description: Page number (0-indexed).
        - name: page_size
          in: query
          required: false
          schema:
            type: integer
            maximum: 100
            minimum: 1
            description: Number of items per page.
            default: 10
            title: Page Size
          description: Number of items per page.
        - name: status
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Filter by job status.
            title: Status
          description: Filter by job status.
      responses:
        '200':
          description: The caller's jobs, newest first
          content:
            application/json:
              schema:
                type: object
                properties:
                  jobs:
                    type: array
                    description: The caller's parse jobs for this page, newest first.
                    items:
                      type: object
                      properties:
                        job_id:
                          type: string
                          description: The unique identifier for the parse job.
                        status:
                          type: string
                          enum:
                            - pending
                            - processing
                            - completed
                            - failed
                            - cancelled
                          description: >-
                            The job's current status: ``pending``,
                            ``processing``, ``completed``, ``failed``, or
                            ``cancelled``.
                        received_at:
                          type: integer
                          description: >-
                            Unix timestamp (seconds) for when the job was
                            received.
                        created_at:
                          type: integer
                          description: >-
                            Unix timestamp (seconds) for when the job was
                            created. Mirrors ``received_at``; exposed so clients
                            have an explicit creation time.
                        progress:
                          type: number
                          description: >-
                            Job completion as a decimal from 0 (not started) to
                            1 (complete).
                        failure_reason:
                          type: string
                          description: >-
                            The reason the job failed. Present only when
                            ``status`` is ``failed``.
                  org_id:
                    type:
                      - string
                      - 'null'
                    description: The organization that owns these jobs.
                  has_more:
                    type: boolean
                    description: >-
                      Whether more jobs exist beyond this page; request the next
                      ``page`` to fetch them.
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      x-codeSamples:
        - lang: cURL
          label: cURL
          source: |-
            curl 'https://api.ade.landing.ai/v2/parse/jobs' \
              -H 'Authorization: Bearer YOUR_API_KEY'
        - lang: Python
          label: Python
          source: |-
            import requests

            url = 'https://api.ade.landing.ai/v2/parse/jobs'
            headers = {'Authorization': 'Bearer YOUR_API_KEY'}

            response = requests.get(url, headers=headers)
            print(response.json())
        - lang: JavaScript
          label: Node.js
          source: |-
            const axios = require('axios');

            axios.get('https://api.ade.landing.ai/v2/parse/jobs', {
              headers: { 'Authorization': 'Bearer YOUR_API_KEY' }
            })
              .then(response => console.log(response.data))
              .catch(error => console.error(error));
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````