{
  "openapi": "3.0.0",
  "info": {
    "title": "微信公众号账户基本信息 API (V1)",
    "version": "1.0.0",
    "description": "通过账号名称返回微信公众号的基本资料信息，包括头像和账号类型等字段（如可用）。用于快速丰富账号资料。"
  },
  "servers": [
    {
      "url": "https://api.justoneapi.com",
      "description": "prod-global（默认）"
    },
    {
      "url": "http://47.117.133.51:30015",
      "description": "prod-cn（中国大陆地区可选）"
    }
  ],
  "paths": {
    "/api/weixin/get-account-basic-info/v1": {
      "get": {
        "tags": [
          "微信公众号"
        ],
        "summary": "账户基本信息",
        "description": "通过账号名称返回微信公众号的基本资料信息，包括头像和账号类型等字段（如可用）。用于快速丰富账号资料。",
        "operationId": "getApiWeixinGetAccountBasicInfoV1",
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "description": "此 API 服务的访问令牌。",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "name",
            "in": "query",
            "description": "用于获取基本资料信息的微信公众号名称。",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "好的",
            "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": "16101620",
        "x-api-version": "v1",
        "x-highlights": []
      }
    }
  },
  "components": {}
}