> ## 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 List of Flux Jobs By Org ID

> Overview of Flux training capabilities and endpoints.



## OpenAPI

````yaml openapi-specs/playground/flux-training.yaml GET /api/flux/training_job/list/
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/list/:
    get:
      tags:
        - Flux Training
      summary: Retrieve a list of all Flux training jobs
      description: >-
        Fetches a list of all Flux training jobs associated with the specified
        organization. Each job includes details such as its ID, name, status,
        and other metadata.
      operationId: listFluxTrainingJobs
      parameters:
        - in: query
          name: org_id
          schema:
            type: string
          required: true
          description: >-
            The unique identifier of the organization for which the training
            jobs are being retrieved.
          example: 0bf00b43-430a-4ca3-a8b3-b13cc8dc6d4d
        - in: header
          name: Authorization
          schema:
            type: string
          required: true
          description: >-
            The authorization token used to authenticate the request. It must be
            provided in the "Bearer {token}" format.
          example: Bearer <ACCESS_TOKEN>
      responses:
        '200':
          description: Successful response containing a list of Flux training jobs.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListFluxTrainingJobsResponse'
        '400':
          description: Invalid request, such as missing or incorrect parameters.
        '401':
          description: Unauthorized access due to invalid or missing authorization token.
        '500':
          description: Internal server error while retrieving the training jobs.
components:
  schemas:
    ListFluxTrainingJobsResponse:
      type: object
      properties:
        jobs:
          type: array
          items:
            $ref: '#/components/schemas/FluxTrainingJobSummary'
    FluxTrainingJobSummary:
      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
          enum:
            - QUEUED
            - RUNNING
            - COMPLETED
            - FAILED
            - CANCELED
        created_at:
          type: string
          format: date-time
          description: Timestamp when the job was created
        trigger_word:
          type: string
          description: The trigger word associated with generated images
        steps:
          type: string
          description: Number of training steps configured
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: JWT token for authentication

````