> ## 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 deployment configurations



## OpenAPI

````yaml api-reference/openapi.yaml get /deployments/configurations
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:
  /deployments/configurations:
    get:
      tags:
        - Deployments
      summary: List deployment configurations
      operationId: listDeploymentConfigurations
      responses:
        '200':
          description: Configurations list
          content:
            application/json:
              schema:
                type: object
                properties:
                  configurations:
                    type: array
                    items:
                      $ref: '#/components/schemas/DeploymentConfiguration'
                  count:
                    type: integer
components:
  schemas:
    DeploymentConfiguration:
      type: object
      properties:
        id:
          type: string
        team_id:
          type: string
        name:
          type: string
        description:
          oneOf:
            - type: string
            - type: 'null'
        yaml:
          type: string
        spec_hash:
          type: string
        resource_count:
          type: integer
        created_at:
          type: integer
        updated_at:
          type: integer
        latest_pushed_version_id:
          oneOf:
            - type: string
            - type: 'null'
        latest_pushed_version_number:
          oneOf:
            - type: integer
            - type: 'null'
        latest_pushed_spec_hash:
          oneOf:
            - type: string
            - type: 'null'
        latest_pushed_at:
          oneOf:
            - type: integer
            - type: 'null'
      required:
        - id
        - team_id
        - name
        - yaml
        - spec_hash
        - resource_count
        - created_at
        - updated_at
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: token

````