# 查询特定Java的下载地址

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /download/jdk/{ver}:
    get:
      summary: 查询特定Java的下载地址
      deprecated: false
      description: ''
      tags:
        - 服务端下载源
      parameters:
        - name: ver
          in: path
          description: java版本
          required: true
          example: '21'
          schema:
            type: string
        - name: os
          in: query
          description: windows/mac/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:
                  url: >-
                    https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.9%2B10/OpenJDK21U-jdk_aarch64_mac_hotspot_21.0.9_10.tar.gz
                  sha256: >-
                    55a40abeb0e174fdc70f769b34b50b70c3967e0b12a643e6a3e23f9a582aac16
          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-429587275-run
components:
  schemas: {}
  securitySchemes: {}
servers: []
security: []

```
