GET
/
api
/
flux
/
training_job
/
list
curl --request GET \
  --url https://training-suite.simplismart.ai/api/flux/training_job/list/ \
  --header 'Authorization: Bearer <token>'
{
  "jobs": [
    {
      "lora_id": "<string>",
      "name": "<string>",
      "status": "QUEUED",
      "created_at": "2023-11-07T05:31:56Z",
      "trigger_word": "<string>",
      "steps": "<string>"
    }
  ]
}

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

200
application/json
Successful response containing a list of Flux training jobs.
jobs
object[]