> ## Documentation Index
> Fetch the complete documentation index at: https://agno-v2-codex-docs-audit-20260719-0149.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# List Team Run Checkpoints

> List FE-friendly continuation boundaries derived from the current stored team run. No separate checkpoint table is used; entries are inferred from message-level checkpoint markers and the terminal end of the transcript.



## OpenAPI

````yaml /reference-api/openapi.yaml get /teams/{team_id}/runs/{run_id}/checkpoints
openapi: 3.1.0
info:
  title: Agno API Reference
  description: The all-in-one, private, secure agent platform that runs in your cloud.
  version: 2.7.4
servers: []
security: []
paths:
  /teams/{team_id}/runs/{run_id}/checkpoints:
    get:
      tags:
        - Teams
      summary: List Team Run Checkpoints
      description: >-
        List FE-friendly continuation boundaries derived from the current stored
        team run. No separate checkpoint table is used; entries are inferred
        from message-level checkpoint markers and the terminal end of the
        transcript.
      operationId: list_team_run_checkpoints
      parameters:
        - name: team_id
          in: path
          required: true
          schema:
            type: string
            title: Team Id
        - name: run_id
          in: path
          required: true
          schema:
            type: string
            title: Run Id
        - name: session_id
          in: query
          required: true
          schema:
            type: string
            description: Session ID for the run
            title: Session Id
          description: Session ID for the run
      responses:
        '200':
          description: Run checkpoints retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RunCheckpointListResponse'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BadRequestResponse'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UnauthenticatedResponse'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ForbiddenResponse'
        '404':
          description: Team or run not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NotFoundResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidationErrorResponse'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InternalServerErrorResponse'
      security:
        - {}
        - HTTPBearer: []
components:
  schemas:
    RunCheckpointListResponse:
      properties:
        run_id:
          type: string
          title: Run Id
          description: Run whose checkpoints were listed.
        session_id:
          type: string
          title: Session Id
          description: Session that contains the run.
        checkpoints:
          type: array
          items:
            $ref: '#/components/schemas/RunCheckpointEntry'
          title: Checkpoints
          description: Checkpoint boundaries in message order.
      type: object
      required:
        - run_id
        - session_id
        - checkpoints
      title: RunCheckpointListResponse
    BadRequestResponse:
      properties:
        detail:
          type: string
          title: Detail
          description: Error detail message
        error_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Error Code
          description: Error code for categorization
      type: object
      required:
        - detail
      title: BadRequestResponse
      example:
        detail: Bad request
        error_code: BAD_REQUEST
    UnauthenticatedResponse:
      properties:
        detail:
          type: string
          title: Detail
          description: Error detail message
        error_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Error Code
          description: Error code for categorization
      type: object
      required:
        - detail
      title: UnauthenticatedResponse
      example:
        detail: Unauthenticated access
        error_code: UNAUTHENTICATED
    ForbiddenResponse:
      properties:
        detail:
          type: string
          title: Detail
          description: Error detail message
      type: object
      required:
        - detail
      title: ForbiddenResponse
      example:
        detail: Insufficient permissions
    NotFoundResponse:
      properties:
        detail:
          type: string
          title: Detail
          description: Error detail message
        error_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Error Code
          description: Error code for categorization
      type: object
      required:
        - detail
      title: NotFoundResponse
      example:
        detail: Not found
        error_code: NOT_FOUND
    ValidationErrorResponse:
      properties:
        detail:
          type: string
          title: Detail
          description: Error detail message
        error_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Error Code
          description: Error code for categorization
      type: object
      required:
        - detail
      title: ValidationErrorResponse
      example:
        detail: Validation error
        error_code: VALIDATION_ERROR
    InternalServerErrorResponse:
      properties:
        detail:
          type: string
          title: Detail
          description: Error detail message
        error_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Error Code
          description: Error code for categorization
      type: object
      required:
        - detail
      title: InternalServerErrorResponse
      example:
        detail: Internal server error
        error_code: INTERNAL_SERVER_ERROR
    RunCheckpointEntry:
      properties:
        checkpoint_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Checkpoint Id
          description: >-
            One-based display ID, or null when the requested boundary is not on
            the checkpoint timeline.
        run_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Run Id
          description: Run that contains the checkpoint.
        session_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Session Id
          description: Session that contains the run.
        message_index:
          type: integer
          minimum: 0
          title: Message Index
          description: Message boundary represented by the checkpoint.
        continue_from:
          type: integer
          minimum: 0
          title: Continue From
          description: Value to send as continue_from when continuing the run.
        status:
          anyOf:
            - type: string
            - type: 'null'
          title: Status
          description: Checkpoint status or current run status.
        reason:
          type: string
          title: Reason
          description: Why this boundary was returned.
        created_at:
          anyOf:
            - type: integer
            - type: 'null'
          title: Created At
          description: Unix timestamp for the checkpoint or run.
        message_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Message Id
          description: Message ID at the checkpoint boundary.
        message_role:
          anyOf:
            - type: string
            - type: 'null'
          title: Message Role
          description: Role of the message at the checkpoint boundary.
        message_preview:
          anyOf:
            - type: string
            - type: 'null'
          title: Message Preview
          description: Truncated message content at the checkpoint boundary.
        is_latest:
          type: boolean
          title: Is Latest
          description: Whether this is the final message boundary in the stored run.
      type: object
      required:
        - checkpoint_id
        - run_id
        - session_id
        - message_index
        - continue_from
        - status
        - reason
        - created_at
        - message_id
        - message_role
        - message_preview
        - is_latest
      title: RunCheckpointEntry
      description: A continuation boundary derived from a stored run transcript.
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````