{
  "openapi": "3.0.0",
  "info": {
    "title": "哔哩哔哩用户关系统计 API (V1)",
    "version": "1.0.0",
    "description": "获取哔哩哔哩用户关系统计数据，包括关注数，用于创作者对标和受众增长追踪。"
  },
  "paths": {
    "/api/bilibili/get-user-relation-stat/v1": {
      "get": {
        "tags": [
          "哔哩哔哩"
        ],
        "summary": "用户关系统计",
        "description": "获取哔哩哔哩用户关系统计数据，包括关注数，用于创作者对标和受众增长追踪。",
        "operationId": "getUserRelationStat",
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "description": "API 的访问令牌。",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "wmid",
            "in": "query",
            "description": "哔哩哔哩用户ID（WMID）。",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "default": {
            "description": "默认响应",
            "content": {
              "application/json": {
                "example": {
                  "code": 0,
                  "data": {
                    "code": 0,
                    "message": "0",
                    "ttl": 1,
                    "data": {
                      "mid": 472747194,
                      "following": 11,
                      "whisper": 0,
                      "black": 0,
                      "follower": 4153991,
                      "fans_medal_toast": null,
                      "fans_effect": null
                    }
                  }
                }
              }
            }
          }
        },
        "x-order": 18001700
      }
    }
  },
  "components": {}
}