> ## Documentation Index
> Fetch the complete documentation index at: https://docs.api.ecylt.com/llms.txt
> Use this file to discover all available pages before exploring further.

# 蓝奏云链接解析

> 解析蓝奏云分享链接获取直接下载地址



## OpenAPI

````yaml /api-reference/openapi_1.json get /v1/lanzou_link
openapi: 3.0.0
info:
  title: 二次元API
  description: 提供多种实用API服务
  version: 1.0.0
  contact:
    url: https://docs.api.ecylt.top
servers:
  - url: https://api-re.ecylt.com
    description: 主要API服务器
security: []
paths:
  /v1/lanzou_link:
    get:
      summary: 蓝奏云链接解析
      description: 解析蓝奏云分享链接获取直接下载地址
      parameters:
        - name: url
          in: query
          description: 蓝奏云分享链接
          required: true
          schema:
            type: string
        - name: pwd
          in: query
          description: 提取密码(如果有)
          required: false
          schema:
            type: string
        - name: type
          in: query
          description: 输出类型,设置为down时直接重定向到下载链接
          required: false
          schema:
            type: string
            enum:
              - down
      responses:
        '200':
          description: 成功解析
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: integer
                  msg:
                    type: string
                  name:
                    type: string
                  filesize:
                    type: string
                  downUrl:
                    type: string
                  二次元API:
                    type: string
        '302':
          description: 重定向到下载链接
        '400':
          description: 参数错误或解析失败

````