> ## 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.

# Lister les checkpoints d'entraînement

> Listez les checkpoints enregistrés pour un job d'entraînement Fastino.

Renvoie les checkpoints visibles pour un job d'entraînement.

## Requête

<ParamField header="X-API-Key" type="string" required>
  Votre clé API Fastino.
</ParamField>

<ParamField path="job_id" type="string" required>
  UUID du job d'entraînement.
</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>

## Réponse

<ResponseField name="success" type="boolean">
  Indique si la requête a abouti.
</ResponseField>

<ResponseField name="checkpoints" type="object[]">
  Checkpoints enregistrés. Chacun peut inclure `id`, `job_id`, `epoch`, `step`, des valeurs de loss, `accuracy`, `learning_rate`, des valeurs de mémoire GPU, `checkpoint_path`, `is_deployable`, `is_best`, `is_final` ainsi que des horodatages.
</ResponseField>

<ResponseField name="count" type="integer">
  Nombre de checkpoints renvoyés.
</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>

Un job inconnu ou inaccessible renvoie `404`.
