{
  "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/zhihu/get-user-followers/v1": {
      "get": {
        "tags": [
          "知乎"
        ],
        "summary": "用户关注者",
        "description": "获取知乎用户粉丝数据，包括粉丝账号的个人资料、标识符、一句话介绍、头像字段和分页元数据，用于受众分析、创作者评估和关系映射。",
        "operationId": "getApiZhihuGetUserFollowersV1",
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "description": "TOKEN",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "userUrlToken",
            "in": "query",
            "description": "知乎用户URL令牌，例如 `zhihu.com/people/{userUrlToken}` 中的值。",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "offset",
            "in": "query",
            "description": "起始偏移量，从0开始。",
            "required": false,
            "schema": {
              "type": "integer",
              "format": "int32",
              "default": 0
            }
          }
        ],
        "responses": {
          "200": {
            "description": "好的",
            "content": {
              "*/*": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "string",
                      "enum": [
                        "0",
                        "100",
                        "101",
                        "202",
                        "300",
                        "301",
                        "302",
                        "303",
                        "400",
                        "404",
                        "500",
                        "600",
                        "601",
                        "602"
                      ]
                    },
                    "message": {
                      "type": "string"
                    },
                    "data": {
                      "type": "object"
                    },
                    "recordTime": {
                      "type": "string",
                      "format": "date-time"
                    },
                    "requestId": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "x-order": "28001600",
        "x-api-version": "v1",
        "x-highlights": []
      }
    }
  },
  "components": {}
}