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

# List data jobs

> Retrieve a list of all data jobs.

Returns a paginated list of all data jobs.

For filter and sort parameters, see [Manage data jobs](/flow/sdk/data-engine/manage-data-jobs).


## OpenAPI

````yaml get /v1/flow/data-jobs
openapi: 3.1.0
info:
  title: SeekrFlow API
  description: SeekrFlow API Documentation
  termsOfService: http://www.seekr.com/support
  contact:
    name: Seekr API Support
    url: http://www.seekr.com/contact
    email: contact@seekr.com
  version: 5.87.1
servers:
  - url: https://flow.seekr.com
    description: SeekrBuild server base URL
security: []
paths:
  /v1/flow/data-jobs:
    get:
      tags:
        - Data jobs
      summary: List data jobs
      description: Retrieve a list of all data jobs.
      operationId: get_data_jobs_v1_flow_data_jobs_get
      parameters:
        - name: job_type
          in: query
          required: false
          schema:
            anyOf:
              - $ref: '#/components/schemas/DataJobType'
              - type: 'null'
            title: Job Type
        - name: sort_by
          in: query
          required: false
          schema:
            $ref: '#/components/schemas/SortableField'
            default: created_at
        - name: sort_order
          in: query
          required: false
          schema:
            type: string
            pattern: ^(asc|desc)$
            default: desc
            title: Sort Order
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 100
            minimum: 1
            default: 25
            title: Limit
        - name: offset
          in: query
          required: false
          schema:
            type: integer
            minimum: 0
            default: 0
            title: Offset
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DataJobListResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - APIKeyHeader: []
components:
  schemas:
    DataJobType:
      type: string
      enum:
        - principle_files
        - context_grounded_files
        - context_grounded_vector_db
      title: DataJobType
      description: Valid job types for data jobs.
    SortableField:
      type: string
      enum:
        - name
        - created_at
        - job_type
      title: SortableField
      description: Valid fields for sorting data jobs.
    DataJobListResponse:
      properties:
        object:
          type: string
          const: list
          title: Object
          default: list
        data:
          items:
            $ref: '#/components/schemas/DataJobResponse'
          type: array
          title: Data
      type: object
      title: DataJobListResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    DataJobResponse:
      properties:
        id:
          type: string
          title: Id
        user_id:
          type: string
          title: User Id
        name:
          type: string
          title: Name
        job_type:
          type: string
          title: Job Type
        alignment_job_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Alignment Job Id
        created_at:
          type: string
          format: date-time
          title: Created At
        updated_at:
          type: string
          format: date-time
          title: Updated At
        status:
          $ref: '#/components/schemas/DataJobStatus'
        system_prompt:
          anyOf:
            - type: string
            - type: 'null'
          title: System Prompt
        system_prompt_updated_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: System Prompt Updated At
        instructions:
          anyOf:
            - type: string
            - type: 'null'
          title: Instructions
        instructions_updated_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Instructions Updated At
        resolved_instructions:
          anyOf:
            - type: string
            - type: 'null'
          title: Resolved Instructions
        vector_database_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Vector Database Id
      type: object
      required:
        - id
        - user_id
        - name
        - job_type
        - alignment_job_id
        - created_at
        - updated_at
        - status
      title: DataJobResponse
      description: Lightweight response for list view performance.
    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
    DataJobStatus:
      type: string
      enum:
        - file_processing
        - needs_review
        - ready_to_start
        - pending
        - queued
        - running
        - cancelled
        - failed
        - completed
      title: DataJobStatus
      description: Status values for data jobs.
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      description: Seekr API Key without 'Bearer' Prefix
      in: header
      name: Authorization

````