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

# Get details of a specific fine-tuning job



## OpenAPI

````yaml get /v1/fine-tuning/{job_name}
openapi: 3.0.0
info:
  title: Fine-tuning Jobs API
  version: 1.0.0
  description: API for managing fine-tuning jobs for language models
servers: []
security: []
paths:
  /v1/fine-tuning/{job_name}:
    get:
      tags:
        - Fine-tuning Jobs
      summary: Get details of a specific fine-tuning job
      parameters:
        - name: job_name
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FineTuningJobDetailResponse'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
      security:
        - ApiKeyAuth: []
components:
  schemas:
    FineTuningJobDetailResponse:
      allOf:
        - $ref: '#/components/schemas/FineTuningJobResponse'
        - type: object
          properties:
            parameters:
              type: object
              properties:
                batch_size:
                  type: integer
                  example: 8
                num_epochs:
                  type: integer
                  example: 3
                shuffle:
                  type: boolean
                  example: true
                lr:
                  type: number
                  format: float
                  example: 0.0003
                seed:
                  type: integer
                  example: 42
              additionalProperties: true
            metrics:
              type: object
              additionalProperties: true
    FineTuningJobResponse:
      type: object
      properties:
        id:
          type: string
          format: uuid
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
        status:
          type: string
          enum:
            - NEW
            - QUEUED
            - RUNNING
            - COMPLETED
            - FAILED
            - STOPPING
            - STOPPED
        base_model_name:
          type: string
        dataset_name:
          type: string
        name:
          type: string
        type:
          type: string
          enum:
            - LORA
            - QLORA
        current_step:
          type: integer
        total_steps:
          type: integer
        current_epoch:
          type: integer
        total_epochs:
          type: integer
        num_tokens:
          type: integer
          description: Number of tokens processed in the fine-tuning job
    ErrorResponse:
      type: object
      properties:
        status:
          type: integer
        message:
          type: string
  responses:
    Unauthorized:
      description: Unauthorized
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
    NotFound:
      description: Resource not found
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````