GET
/
v1
/
tunes
{
  "data": [
    {
      "created_at": "2023-11-07T05:31:56Z",
      "deleted_at": "2023-11-07T05:31:56Z",
      "description": "<string>",
      "details": {
        "base_checkpoint": {
          "checkpoint_id": "<string>",
          "engine": "image/stable-diffusion-v1-5",
          "name": "<string>"
        },
        "files": [
          {
            "caption": "<string>",
            "file_id": "<string>"
          }
        ],
        "resize_images": true,
        "seed": 123,
        "steps": 123,
        "trigger_words": [
          "<string>"
        ],
        "tune_type": "<any>"
      },
      "id": "<string>",
      "name": "<string>",
      "output_lora_ids": [
        "<string>"
      ],
      "result": {
        "number_of_available_assets": 123,
        "output_assets": [
          "<string>"
        ],
        "rejected_assets": [
          "<string>"
        ],
        "unready_assets": [
          "<string>"
        ]
      },
      "status": "pending",
      "status_details": "<string>",
      "succeeded_at": "2023-11-07T05:31:56Z",
      "tenant_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "tune_type": "lora_tune",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ],
  "has_more": true,
  "total": 123
}

Query Parameters

offset
integer
default: 0

Offset into the results.

limit
integer
default: 100

The max number of results to be shown (limit 100).

name
string | null

The name of the tune to filter on.

tune_type
enum<string> | null

The type of the tune to filter on.

Available options:
lora_tune
base_checkpoint_id
string | null

The base checkpoint ID for the LoRA tune.

trigger_words
string[] | null

The trigger words to filter on.

engine
string | null

The engine type.

Response

200 - application/json
data
object[]
required

List of tunes.

has_more
boolean
required

True if it has more items than the returned list.

total
integer
required

Total number of tunes.