{
  "openapi": "3.0.0",
  "info": {
    "title": "WeChat Official Accounts Article Engagement Metrics API (V1)",
    "version": "1.0.0",
    "description": "Get WeChat Official Accounts article Engagement Metrics data, including like, share, and comment metrics, for article performance tracking and benchmarking."
  },
  "paths": {
    "/api/weixin/get-article-feedback/v1": {
      "get": {
        "tags": [
          "WeChat Official Accounts"
        ],
        "summary": "Article Engagement Metrics",
        "description": "Get WeChat Official Accounts article Engagement Metrics data, including like, share, and comment metrics, for article performance tracking and benchmarking.",
        "operationId": "getArticleFeedback",
        "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": {
                    "read_num": 1217,
                    "like_num": 23,
                    "watch_num": 4,
                    "comment_enabled": 1,
                    "comment_count": 2,
                    "share_num": 17
                  }
                }
              }
            }
          }
        },
        "x-order": 20001100
      }
    }
  },
  "components": {}
}