Skip to main content
GET
/
api
/
flux
/
training_job
/
get
Retrieve details of a specific Flux training job
curl --request GET \
  --url https://training-suite.simplismart.ai/api/flux/training_job/get/ \
  --header 'Authorization: Bearer <token>'
{
  "lora_id": "<string>",
  "name": "<string>",
  "status": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "config": {},
  "progress": 123,
  "trigger_word": "<string>",
  "steps": "<string>",
  "learning_rate": "<string>",
  "output_model": "<string>"
}

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.

Authorizations

Authorization
string
header
required

JWT token for authentication

Headers

Authorization
string
required

Bearer token for authentication and authorization.

Query Parameters

org_id
string
required

Organization ID to which the training job belongs.

lora_id
string
required

Unique identifier for the Flux training job.

Response

200 - application/json

The requested Flux training job details were retrieved successfully.

lora_id
string

Unique identifier for the Flux training job

name
string

Name of the Flux training experiment

status
string

Current status of the training job

created_at
string<date-time>

Timestamp when the job was created

config
object

The complete training configuration used for this job

progress
number

Progress percentage of the training job (0-100)

trigger_word
string

The trigger word associated with this model

steps
string

Number of training steps configured

learning_rate
string

Learning rate used for training

output_model
string

Path to the trained model output (when completed)