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

# List snapshots



## OpenAPI

````yaml api-reference/openapi.yaml get /snapshots
openapi: 3.1.0
info:
  title: Minenet Client API
  version: 1.0.0
  description: >
    Team-scoped API for deployments, servers, snapshots, files, and mod platform
    metadata.


    Authentication:

    - Bearer user token (`mnp_*`)

    - Bearer agent token (`mna_*`)


    Global rate limit: 100 requests/minute per token.
servers:
  - url: https://your-domain.com/api/client/v1
security:
  - bearerAuth: []
tags:
  - name: Deployments
  - name: Servers
  - name: Snapshots
  - name: Files
  - name: Modrinth
  - name: CurseForge
paths:
  /snapshots:
    get:
      tags:
        - Snapshots
      summary: List snapshots
      operationId: listSnapshots
      parameters:
        - name: source_server_id
          in: query
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: Snapshot list
          content:
            application/json:
              schema:
                type: object
                properties:
                  snapshots:
                    type: array
                    items:
                      $ref: '#/components/schemas/Snapshot'
                  count:
                    type: integer
components:
  schemas:
    Snapshot:
      type: object
      properties:
        id:
          type: string
        server_id:
          type: string
          format: uuid
        team_id:
          type: string
        snapshot_uuid:
          type: string
          format: uuid
        name:
          type: string
        status:
          type: string
        size:
          oneOf:
            - type: integer
            - type: 'null'
        file_count:
          oneOf:
            - type: integer
            - type: 'null'
        created_at:
          type: integer
        created_by:
          type: string
      required:
        - id
        - server_id
        - team_id
        - snapshot_uuid
        - name
        - status
        - created_at
        - created_by
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: token

````