{
  "openapi": "3.0.0",
  "info": {
    "title": "WeChat Official Accounts Article Details API (V1)",
    "version": "1.0.0",
    "description": "Get WeChat Official Accounts article Details data, including body content, for article archiving, research, and content analysis."
  },
  "paths": {
    "/api/weixin/get-article-detail/v1": {
      "get": {
        "tags": [
          "WeChat Official Accounts"
        ],
        "summary": "Article Details",
        "description": "Get WeChat Official Accounts article Details data, including body content, for article archiving, research, and content analysis.",
        "operationId": "getArticleDetailV1",
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "description": "Access token for the API.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "articleUrl",
            "in": "query",
            "description": "The URL of the Weixin article.",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "default": {
            "description": "default response",
            "content": {
              "application/json": {
                "example": {
                  "code": 0,
                  "data": {
                    "title": "",
                    "content": "",
                    "publish_time": "",
                    "user_info": {
                      "author": "",
                      "nickname": ""
                    }
                  }
                }
              }
            }
          }
        },
        "x-order": 20001400
      }
    }
  },
  "components": {}
}