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

# Retrieve Flux Job Details By Request ID and Job ID

> Fetch metadata and configuration details of a Flux training job by job_id the and org_id.



## OpenAPI

````yaml openapi-specs/playground/flux-training.yaml GET /api/flux/training_job/get/
openapi: 3.1.0
info:
  title: Flux Training API
  description: >-
    API endpoints for training, monitoring, and managing Flux models (AI image
    models)
  version: 1.0.0
servers:
  - url: https://training-suite.simplismart.ai
    description: Training Suite Production Server
security:
  - BearerAuth: []
tags:
  - name: Flux Training
    description: Flux model training endpoints
paths:
  /api/flux/training_job/get/:
    get:
      tags:
        - Flux Training
      summary: Retrieve details of a specific Flux training job
      description: >-
        Fetch metadata and configuration details of a Flux training job
        identified by the provided lora_id and org_id.
      operationId: getFluxTrainingJob
      parameters:
        - in: query
          name: org_id
          schema:
            type: string
          required: true
          description: Organization ID to which the training job belongs.
          example: 0bf00b43-430a-4ca3-a8b3-b13cc8dc6d4d
        - in: query
          name: lora_id
          schema:
            type: string
          required: true
          description: Unique identifier for the Flux training job.
          example: 3fe92c25-e5fd-4281-93df-5aa886064dbd
        - in: header
          name: Authorization
          schema:
            type: string
          required: true
          description: Bearer token for authentication and authorization.
          example: Bearer <ACCESS_TOKEN>
      responses:
        '200':
          description: The requested Flux training job details were retrieved successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetFluxTrainingJobResponse'
components:
  schemas:
    GetFluxTrainingJobResponse:
      type: object
      properties:
        lora_id:
          type: string
          description: Unique identifier for the Flux training job
        name:
          type: string
          description: Name of the Flux training experiment
        status:
          type: string
          description: Current status of the training job
        created_at:
          type: string
          format: date-time
          description: Timestamp when the job was created
        config:
          type: object
          description: The complete training configuration used for this job
        progress:
          type: number
          description: Progress percentage of the training job (0-100)
        trigger_word:
          type: string
          description: The trigger word associated with this model
        steps:
          type: string
          description: Number of training steps configured
        learning_rate:
          type: string
          description: Learning rate used for training
        output_model:
          type: string
          description: Path to the trained model output (when completed)
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: JWT token for authentication

````