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

# List checkpoints

> List the checkpoints for a single fine-tuning job.



## OpenAPI

````yaml GET /fine-tunes/{id}/checkpoints
openapi: 3.1.0
info:
  title: Together APIs
  description: The Together REST API. See https://docs.together.ai for more details.
  version: 2.0.0
  termsOfService: https://www.together.ai/terms-of-service
  contact:
    name: Together Support
    url: https://www.together.ai/contact
  license:
    name: MIT
    url: https://github.com/togethercomputer/openapi/blob/main/LICENSE
servers:
  - url: https://api.together.ai/v1
    description: Default environment for APIs
  - url: https://api-inference.together.ai/v2
    description: Optimized environment for inference
security:
  - bearerAuth: []
paths:
  /fine-tunes/{id}/checkpoints:
    get:
      tags:
        - Fine-tuning
      summary: List checkpoints
      description: List the checkpoints for a single fine-tuning job.
      parameters:
        - name: id
          in: path
          required: true
          schema:
            description: The ID of the fine-tune job to list checkpoints for
            type: string
      responses:
        '200':
          description: List of fine-tune checkpoints
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FinetuneListCheckpoints'
components:
  schemas:
    FinetuneListCheckpoints:
      type: object
      required:
        - data
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/FineTuneCheckpoint'
    FineTuneCheckpoint:
      type: object
      description: A checkpoint available for a fine-tuning job.
      required:
        - step
        - path
        - created_at
        - checkpoint_type
      properties:
        step:
          type: integer
          description: >-
            Step represented by the checkpoint; final checkpoints use the
            shipped model step.
        created_at:
          type: string
          description: Timestamp when the checkpoint was created.
        path:
          type: string
          description: Storage path for the checkpoint artifact.
        checkpoint_type:
          type: string
          description: >-
            Display label for the checkpoint, including the final or
            intermediate checkpoint step.
        checkpoint:
          type: string
          enum:
            - model
            - adapter
          description: Canonical artifact selector for checkpoint download requests.
        object_id:
          type: string
          description: >-
            Together model registry object ID for the checkpoint artifact (e.g.
            `ml_...`).
        object_name:
          type: string
          description: >-
            Together model registry name for the checkpoint artifact, formatted
            as `<project_slug>/<checkpoint_name>`.
        object_revision_id:
          type: string
          description: >-
            Together model registry revision ID for the checkpoint artifact
            (e.g. `rv_...`).
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      x-bearer-format: bearer
      x-default: default

````