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



## OpenAPI

````yaml api-reference/openapi.yaml get /deployments/runs
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/runs:
    get:
      tags:
        - Deployments
      summary: List deployment runs
      operationId: listDeploymentRuns
      parameters:
        - name: limit
          in: query
          schema:
            type: integer
            default: 20
      responses:
        '200':
          description: Runs
          content:
            application/json:
              schema:
                type: object
                properties:
                  runs:
                    type: array
                    items:
                      $ref: '#/components/schemas/DeploymentRunSummary'
                  count:
                    type: integer
components:
  schemas:
    DeploymentRunSummary:
      type: object
      properties:
        id:
          type: string
        status:
          type: string
        stage:
          oneOf:
            - type: string
            - type: 'null'
        configuration_id:
          type: string
        configuration_version_id:
          oneOf:
            - type: string
            - type: 'null'
        configuration_version_number:
          oneOf:
            - type: integer
            - type: 'null'
        resource_count:
          type: integer
        queue_position:
          oneOf:
            - type: integer
            - type: 'null'
        summary:
          oneOf:
            - type: object
              additionalProperties: true
            - type: 'null'
        created_at:
          type: integer
        started_at:
          oneOf:
            - type: integer
            - type: 'null'
        completed_at:
          oneOf:
            - type: integer
            - type: 'null'
        error:
          oneOf:
            - type: string
            - type: 'null'
        failure_class:
          oneOf:
            - type: string
            - type: 'null'
      required:
        - id
        - status
        - configuration_id
        - resource_count
        - created_at
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: token

````