v6

latestOpenAPI 3.1.0MIT2026-08-08196464802.1 KB
Fine-tuning

List all jobs

List the metadata for all fine-tuning jobs. Returns a list of FinetuneResponseTruncated objects.

get/fine-tunes

Response

List of fine-tune jobs

Example response

{
  "data": [
    {
      "id": "ft-01234567890123456789",
      "status": "completed",
      "created_at": "2023-05-17T17:35:45.123Z",
      "updated_at": "2023-05-17T18:46:23.456Z",
      "user_id": "user_789xyz012",
      "owner_address": "user@example.com",
      "total_price": 1500,
      "token_count": 850000,
      "events": [],
      "model": "meta-llama/Llama-2-7b-hf",
      "model_output_name": "mynamespace/meta-llama/Llama-2-7b-hf-32162631",
      "n_epochs": 3,
      "training_file": "file-01234567890123456789",
      "wandb_project_name": "my-finetune-project"
    }
  ]
}