{
  "openapi": "3.0.0",
  "info": {
    "title": "WeChat Official Accounts Article Details API (V3)",
    "version": "1.0.0",
    "description": "Returns WeChat Official Account article details with additional video-related fields when available. Version 3 is useful for articles that contain video material or Channel-related media references."
  },
  "servers": [
    {
      "url": "https://api.justoneapi.com",
      "description": "prod-global (default)"
    },
    {
      "url": "http://47.117.133.51:30015",
      "description": "prod-cn (optional for Mainland China)"
    }
  ],
  "paths": {
    "/api/weixin/get-article-detail/v3": {
      "get": {
        "tags": [
          "WeChat Official Accounts"
        ],
        "summary": "Article Details",
        "description": "Returns WeChat Official Account article details with additional video-related fields when available. Version 3 is useful for articles that contain video material or Channel-related media references.",
        "operationId": "getApiWeixinGetArticleDetailV3",
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "description": "Access token for this API service.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "articleUrl",
            "in": "query",
            "description": "WeChat Official Account article URL used to fetch article details with video-related fields when available.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "mode",
            "in": "query",
            "description": "Article body format. TEXT returns plain text, and RICH_TEXT returns rich text when supported.\n\nAvailable Values:\n- `TEXT`: Plain text article detail\n- `RICH_TEXT`: Rich text article detail",
            "required": false,
            "schema": {
              "type": "string",
              "default": "TEXT",
              "description": "Weixin article detail mode",
              "enum": [
                "TEXT",
                "RICH_TEXT"
              ]
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "*/*": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "string",
                      "enum": [
                        "0",
                        "100",
                        "101",
                        "202",
                        "300",
                        "301",
                        "302",
                        "303",
                        "400",
                        "500",
                        "600",
                        "601"
                      ]
                    },
                    "message": {
                      "type": "string"
                    },
                    "data": {
                      "type": "object"
                    },
                    "recordTime": {
                      "type": "string",
                      "format": "date-time"
                    }
                  }
                }
              }
            }
          }
        },
        "x-order": "16101220",
        "x-api-version": "v3",
        "x-highlights": []
      }
    }
  },
  "components": {}
}