Skip to main content
GET
/
api
/
flux
/
training_job
/
list
Retrieve a list of all Flux training jobs
curl --request GET \
  --url https://training-suite.simplismart.ai/api/flux/training_job/list/ \
  --header 'Authorization: Bearer <token>'
{
  "jobs": [
    {
      "lora_id": "<string>",
      "name": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "trigger_word": "<string>",
      "steps": "<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

The authorization token used to authenticate the request. It must be provided in the "Bearer {token}" format.

Query Parameters

org_id
string
required

The unique identifier of the organization for which the training jobs are being retrieved.

Response

Successful response containing a list of Flux training jobs.

jobs
object[]