Skip to main content
GET
/
fine-tune
/
jobs
curl "https://api.u1.archetypeai.app/v0.5/fine-tune/jobs?limit=10&statuses=RUNNING" \
  -H "Authorization: Bearer $ATAI_API_KEY"
[
  {
    "name": "my-finetune-run",
    "id": "ftj-my-finetune-run-3de60a5c",
    "uuid": "8f2c1e5a-7b3d-4d9e-9c1a-2f5b7d8e4a6c",
    "org_uuid": "0a1b2c3d-4e5f-6789-abcd-ef0123456789",
    "status": "RUNNING",
    "config": {
      "model": "Newton::c2_4_7b_251215a172f6d7",
      "datasets": [
        {
          "name": "training-set",
          "split": "train",
          "file_ids": ["file-abc123"]
        }
      ]
    },
    "created_at": "2026-04-27T14:32:18.421000Z",
    "updated_at": "2026-04-27T14:35:02.118000Z",
    "inference_config_path": null
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.archetypeai.app/llms.txt

Use this file to discover all available pages before exploring further.

Overview

This endpoint returns all fine-tune jobs available to your organization. Use the query parameters to paginate the results or filter by status.

Query Parameters

limit
integer
default:"-1"
Maximum number of jobs to return. Use -1 (the default) to return all matching jobs.
offset
integer
default:"0"
Number of jobs to skip before returning results. Use with limit to paginate.
statuses
array
Optional list of statuses to filter by. Repeat the parameter to filter by multiple statuses (e.g. ?statuses=RUNNING&statuses=STARTING). Valid values: UNKNOWN, REGISTERED, STARTING, RUNNING, COMPLETED, FINALIZING, STOPPING, STOPPED, CANCELLED, FAILED.

Response

Returns an array of job records. Each record has the same shape as the response from Create Job.
curl "https://api.u1.archetypeai.app/v0.5/fine-tune/jobs?limit=10&statuses=RUNNING" \
  -H "Authorization: Bearer $ATAI_API_KEY"
[
  {
    "name": "my-finetune-run",
    "id": "ftj-my-finetune-run-3de60a5c",
    "uuid": "8f2c1e5a-7b3d-4d9e-9c1a-2f5b7d8e4a6c",
    "org_uuid": "0a1b2c3d-4e5f-6789-abcd-ef0123456789",
    "status": "RUNNING",
    "config": {
      "model": "Newton::c2_4_7b_251215a172f6d7",
      "datasets": [
        {
          "name": "training-set",
          "split": "train",
          "file_ids": ["file-abc123"]
        }
      ]
    },
    "created_at": "2026-04-27T14:32:18.421000Z",
    "updated_at": "2026-04-27T14:35:02.118000Z",
    "inference_config_path": null
  }
]