> ## Documentation Index
> Fetch the complete documentation index at: https://docs.fastino.ai/llms.txt
> Use this file to discover all available pages before exploring further.

> ## Agent Instructions
> Use https://docs.fastino.ai/openapi.json as the source of truth for customer-facing Fastino API routes. Only call operations present in that specification. Do not infer or call undocumented routes. Direct Fastino API integrations use https://api.fastino.ai, /v1 routes, and FASTINO_API_KEY.

# Trainings-Checkpoints auflisten

> Listen Sie die für einen Fastino-Trainingsjob gespeicherten Checkpoints auf.

`GET /v1/training-jobs/{job_id}/checkpoints`

Gibt die für einen Trainingsjob sichtbaren Checkpoints zurück.

## Request

<ParamField header="X-API-Key" type="string" required>
  Ihr Fastino-API-Schlüssel.
</ParamField>

<ParamField path="job_id" type="string" required>
  UUID des Trainingsjobs.
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl https://api.fastino.ai/v1/training-jobs/YOUR_TRAINING_JOB_ID/checkpoints \
    -H "X-API-Key: $FASTINO_API_KEY"
  ```
</RequestExample>

## Response

<ResponseField name="success" type="boolean">
  Gibt an, ob die Anfrage erfolgreich war.
</ResponseField>

<ResponseField name="checkpoints" type="object[]">
  Gespeicherte Checkpoints. Jeder Eintrag kann `id`, `job_id`, `epoch`, `step`, Loss-Werte, `accuracy`, `learning_rate`, GPU-Speicherwerte, `checkpoint_path`, `is_deployable`, `is_best`, `is_final` sowie Zeitstempel enthalten.
</ResponseField>

<ResponseField name="count" type="integer">
  Anzahl der zurückgegebenen Checkpoints.
</ResponseField>

<ResponseExample>
  ```json Response theme={null}
  {
    "success": true,
    "checkpoints": [
      {
        "id": "CHECKPOINT_ID",
        "job_id": "YOUR_TRAINING_JOB_ID",
        "epoch": 5,
        "step": 500,
        "training_loss": 0.12,
        "validation_loss": 0.18,
        "is_deployable": true,
        "is_best": true,
        "is_final": true,
        "created_at": "2026-09-22T20:30:00Z",
        "updated_at": "2026-09-22T20:30:00Z"
      }
    ],
    "count": 1
  }
  ```
</ResponseExample>

Ein unbekannter oder nicht zugänglicher Job gibt `404` zurück.
