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

# List fine-tune training jobs

> Paginated list of training jobs.



## OpenAPI

````yaml get /api/finetune/jobs
openapi: 3.1.0
info:
  title: Nx1 AI API
  description: |

    AI API for Nx1 Data Platform Management and Automated Data Tasks.

    Authentication is required via PSK in Authorization header.

    Default PSK is | [ask a friend] |
  version: 0.10.2
servers: []
security: []
paths:
  /api/finetune/jobs:
    get:
      tags:
        - AutoLLM
      summary: List fine-tune training jobs
      description: Paginated list of training jobs.
      operationId: list_training_jobs_api_finetune_jobs_get
      parameters:
        - name: domain
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Domain
        - name: owner
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Owner
        - name: status
          in: query
          required: false
          schema:
            anyOf:
              - $ref: '#/components/schemas/FineTuneJobStatusEnum'
              - type: 'null'
            title: Status
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 500
            minimum: 1
            default: 50
            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/FineTuneJobsList'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - OAuth2AuthorizationCodeBearer: []
        - APIKeyHeader: []
components:
  schemas:
    FineTuneJobStatusEnum:
      type: string
      enum:
        - ready
        - queued
        - running
        - complete
        - failed
      title: FineTuneJobStatusEnum
      description: Lifecycle of a fine-tune training job (mirrors the DB enum).
    FineTuneJobsList:
      properties:
        items:
          items:
            $ref: '#/components/schemas/FineTuneJobSummary'
          type: array
          title: Items
        total:
          type: integer
          title: Total
        limit:
          type: integer
          title: Limit
        offset:
          type: integer
          title: Offset
      type: object
      required:
        - items
        - total
        - limit
        - offset
      title: FineTuneJobsList
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    FineTuneJobSummary:
      properties:
        job_id:
          type: string
          format: uuid
          title: Job Id
        name:
          type: string
          title: Name
        domain:
          type: string
          title: Domain
        base_model:
          type: string
          title: Base Model
        owner:
          type: string
          title: Owner
        adapter_type:
          $ref: '#/components/schemas/AdapterTypeEnum'
        status:
          $ref: '#/components/schemas/FineTuneJobStatusEnum'
        registered_model_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Registered Model Name
        airflow_dag_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Airflow Dag Url
        created_at:
          type: string
          format: date-time
          title: Created At
        updated_at:
          type: string
          format: date-time
          title: Updated At
      type: object
      required:
        - job_id
        - name
        - domain
        - base_model
        - owner
        - adapter_type
        - status
        - created_at
        - updated_at
      title: FineTuneJobSummary
      description: Lightweight list-view of a training job.
    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
    AdapterTypeEnum:
      type: string
      enum:
        - lora
        - qlora
      title: AdapterTypeEnum
      description: Parameter-efficient fine-tuning method.
  securitySchemes:
    OAuth2AuthorizationCodeBearer:
      type: oauth2
      flows:
        authorizationCode:
          scopes: {}
          authorizationUrl: >-
            https://sso-rapid.rapid.nx1cloud.com/realms/rapid/protocol/openid-connect/auth
          tokenUrl: >-
            https://sso-rapid.rapid.nx1cloud.com/realms/rapid/protocol/openid-connect/token
    APIKeyHeader:
      type: apiKey
      in: header
      name: Authorization-PSK

````