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

# List all jobs

> List all configured Spark jobs, optionally filtering by status, type, context, or whether the job is enabled.



## OpenAPI

````yaml /api-reference/5.9/fusion-api-job-config.json get /job-config/jobs
openapi: 3.0.1
info:
  title: Fusion Job Config API
  description: API for the Job Configuration and History of Lucidworks Fusion.
  contact:
    name: Lucidworks
    url: www.lucidworks.com
    email: support@lucidworks.com
  license:
    name: License of API
    url: https://lucidworks.com/legal/developer-license-agreement/
  version: '5.9'
servers:
  - url: https://{FUSION_HOST}
    description: Fusion
    variables:
      FUSION_HOST:
        default: FUSION_HOST
        description: Your environment host.
security: []
tags:
  - name: Manage task jobs
    description: Fetch, create, update, and delete task job configurations.
  - name: Manage all jobs
    description: Fetch, create, update, and delete task jobs and Spark jobs.
  - name: Manage job schedules
    description: Fetch, configure, and reset job schedules.
  - name: Get job histories
    description: Get the history of any job.
externalDocs:
  description: Lucidworks Documentation
  url: https://doc.lucidworks.com/
paths:
  /job-config/jobs:
    get:
      tags:
        - Manage all jobs
      summary: List all jobs
      description: >-
        List all configured Spark jobs, optionally filtering by status, type,
        context, or whether the job is enabled.
      operationId: listJobs
      parameters:
        - name: status
          in: query
          description: >-
            Filter jobs by status, one of: `ready`, `running`, `success`,
            `aborted`, or `failed`.
          required: false
          schema:
            type: array
            items:
              type: string
        - name: enabled
          in: query
          description: >-
            Filter jobs by whether they are enabled (`true`) or disabled
            (`false`).
          required: false
          schema:
            type: string
        - name: type
          in: query
          description: 'Filter jobs by type, one of: `task`, `spark`, or `datasource`.'
          required: false
          schema:
            type: array
            items:
              type: string
        - name: context
          description: The app to which a job belongs, formatted as `app:APP_NAME`.
          example: app:api-test-app
          in: query
          required: false
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/JobView'
              example:
                - resource: task:delete-old-system-metrics
                  enabled: true
                  status: success
                  lastStartTime: '2025-12-14T04:26:00.035Z'
                  lastEndTime: '2025-12-14T04:26:00.139Z'
                  nextStartTime: '2025-12-21T04:26:00.000Z'
                - resource: spark:index_synthetic_data
                  enabled: true
                  status: success
                  lastStartTime: '2025-12-18T19:00:00.112Z'
                  lastEndTime: '2025-12-18T19:01:02.975Z'
                  nextStartTime: '2025-12-18T22:00:00.000Z'
                - resource: datasource:en_webv2
                  enabled: true
                  status: success
                  lastStartTime: '2025-12-18T05:00:05.269Z'
                  lastEndTime: '2025-12-18T05:04:12.263Z'
                  nextStartTime: '2025-12-19T05:00:00.000Z'
components:
  schemas:
    JobView:
      type: object
      properties:
        resource:
          type: string
        enabled:
          type: boolean
        startedBy:
          type: string
        status:
          type: string
        extra:
          type: object
        result:
          type: object
        lastStartTime:
          type: string
          format: date-time
        lastEndTime:
          type: string
          format: date-time
        nextStartTime:
          type: string
          format: date-time

````