# 获取服务端的所有构建信息

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /mirrors/{server}/{version}:
    get:
      summary: 获取服务端的所有构建信息
      deprecated: false
      description: ''
      tags:
        - 服务端下载源
      parameters:
        - name: server
          in: path
          description: ''
          required: true
          example: paper
          schema:
            type: string
        - name: version
          in: path
          description: ''
          required: true
          example: '1.21'
          schema:
            type: string
        - name: User-Agent
          in: header
          description: ''
          example: MSL API Test
          schema:
            type: string
            default: MSL API Test
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: integer
                  message:
                    type: string
                  data:
                    type: array
                    items:
                      type: string
                required:
                  - code
                  - message
                  - data
              example:
                code: 200
                message: ''
                data:
                  - latest
          headers: {}
          x-apifox-name: 成功
      security: []
      x-apifox-folder: 服务端下载源
      x-apifox-status: developing
      x-run-in-apifox: https://app.apifox.com/web/project/7956474/apis/api-429587270-run
components:
  schemas: {}
  securitySchemes: {}
servers: []
security: []

```
