> ## 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 file conversion jobs

> Retrieve a list of all file conversion jobs in your organization.

> ⚠️ We recommend using the data jobs API instead.
>
> Use `GET /v1/flow/data-jobs` to list and filter data jobs. See [Manage data jobs](/flow/sdk/data-engine/manage-data-jobs) for details.

Retrieve a paginated list of all ingestion jobs. Each job includes its current status and `file_records` with per-file tracking.

For details on interpreting job states and file records, see [Monitor ingestion](/flow/sdk/data-engine/monitor-ingestion).


## OpenAPI

````yaml get /v1/flow/alignment/ingestion
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/alignment/ingestion:
    get:
      tags:
        - Alignment
      summary: List file conversion jobs
      description: Retrieve a list of all file conversion jobs in your organization.
      operationId: ingestion_list_v1_flow_alignment_ingestion_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/IngestionList'
      security:
        - APIKeyHeader: []
components:
  schemas:
    IngestionList:
      properties:
        object:
          anyOf:
            - type: string
              const: list
            - type: 'null'
          title: Object
        data:
          anyOf:
            - items:
                $ref: '#/components/schemas/IngestionResponse'
              type: array
            - type: 'null'
          title: Data
      additionalProperties: true
      type: object
      title: IngestionList
    IngestionResponse:
      properties:
        id:
          type: string
          title: Id
          description: Ingestion job ID
        created_at:
          type: string
          format: date-time
          title: Created At
        status:
          $ref: '#/components/schemas/IngestionJobStatus'
        output_files:
          items:
            type: string
          type: array
          title: Output Files
        file_records:
          anyOf:
            - items:
                $ref: '#/components/schemas/IngestionFileRecord'
              type: array
            - type: 'null'
          title: File Records
          description: Detailed file records with queue positions
      additionalProperties: true
      type: object
      required:
        - id
        - created_at
        - status
        - output_files
      title: IngestionResponse
    IngestionJobStatus:
      type: string
      enum:
        - queued
        - running
        - completed
        - failed
      title: IngestionJobStatus
    IngestionFileRecord:
      properties:
        record_id:
          type: string
          title: Record Id
          description: File record ID
        ingestion_job_id:
          type: string
          title: Ingestion Job Id
          description: Parent ingestion job ID
        alignment_file_id:
          type: string
          title: Alignment File Id
          description: Alignment file ID
        user_id:
          type: string
          title: User Id
          description: Owner of the ingestion job
        filename:
          type: string
          title: Filename
          description: Filename
        metaflow_job_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Metaflow Job Id
          description: Metaflow job handling this file
        method:
          anyOf:
            - type: string
            - type: 'null'
          title: Method
          description: Ingestion method used for processing
        status:
          type: string
          title: Status
          description: File processing status
        queue_position:
          anyOf:
            - type: integer
            - type: 'null'
          title: Queue Position
          description: Position in queue if status is queued
        error_message:
          anyOf:
            - type: string
            - type: 'null'
          title: Error Message
          description: Error message if failed
        suggested_fix:
          anyOf:
            - type: string
            - type: 'null'
          title: Suggested Fix
          description: Suggested fix when processing fails
        worker_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Worker Id
          description: Worker currently handling the file
        deleted:
          type: boolean
          title: Deleted
          description: Whether this record has been soft-deleted
          default: false
        created_at:
          type: string
          format: date-time
          title: Created At
        processing_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Processing At
          description: Timestamp when processing started
        completed_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Completed At
          description: Timestamp when processing completed
        failed_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Failed At
          description: Timestamp when processing failed
      additionalProperties: true
      type: object
      required:
        - record_id
        - ingestion_job_id
        - alignment_file_id
        - user_id
        - filename
        - status
        - created_at
      title: IngestionFileRecord
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      description: Seekr API Key without 'Bearer' Prefix
      in: header
      name: Authorization

````