# 查询可用Java列表

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /jdk:
    get:
      summary: 查询可用Java列表
      deprecated: false
      description: ''
      tags:
        - 服务端下载源
      parameters:
        - name: os
          in: query
          description: mac/windows/linux
          required: true
          example: mac
          schema:
            type: string
        - name: arch
          in: query
          description: arm64/x64
          required: true
          example: arm64
          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: {}
                x-apifox-orders: []
              example:
                code: 200
                message: ''
                data:
                  - '8'
                  - '11'
                  - '17'
                  - '21'
                  - '25'
          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-429587276-run
components:
  schemas: {}
  securitySchemes: {}
servers: []
security: []

```
