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

# Listar checkpoints de entrenamiento

> Lista los checkpoints guardados de un trabajo de entrenamiento de Fastino.

Devuelve los checkpoints visibles para un trabajo de entrenamiento.

## Solicitud

<ParamField header="X-API-Key" type="string" required>
  Tu clave de API de Fastino.
</ParamField>

<ParamField path="job_id" type="string" required>
  UUID del trabajo de entrenamiento.
</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>

## Respuesta

<ResponseField name="success" type="boolean">
  Si la solicitud tuvo éxito.
</ResponseField>

<ResponseField name="checkpoints" type="object[]">
  Checkpoints guardados. Cada uno puede incluir `id`, `job_id`, `epoch`, `step`, valores de pérdida, `accuracy`, `learning_rate`, valores de memoria de GPU, `checkpoint_path`, `is_deployable`, `is_best`, `is_final` y marcas de tiempo.
</ResponseField>

<ResponseField name="count" type="integer">
  Número de checkpoints devueltos.
</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 trabajo desconocido o inaccesible devuelve `404`.
