{
  "openapi": "3.0.0",
  "info": {
    "title": "网页Markdown内容 API (V1)",
    "version": "1.0.0",
    "description": "获取网页的Markdown内容。"
  },
  "paths": {
    "/api/web/markdown/v1": {
      "get": {
        "tags": [
          "网页"
        ],
        "summary": "Markdown内容",
        "description": "获取网页的Markdown内容。",
        "operationId": "markdownV1",
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "description": "此API服务的鉴权令牌。",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "url",
            "in": "query",
            "description": "要获取的网页URL。",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "好的",
            "content": {
              "*/*": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "string",
                      "enum": [
                        "0",
                        "100",
                        "101",
                        "300",
                        "301",
                        "302",
                        "303",
                        "400",
                        "500",
                        "600",
                        "601"
                      ]
                    },
                    "message": {
                      "type": "string"
                    },
                    "data": {
                      "type": "object"
                    },
                    "recordTime": {
                      "type": "string",
                      "format": "date-time"
                    }
                  }
                }
              }
            }
          }
        },
        "x-order": "35001200"
      }
    }
  },
  "components": {}
}