{
  "openapi": "3.0.0",
  "info": {
    "title": "贝壳小区列表 API (V1)",
    "version": "1.0.0",
    "description": "获取贝壳小区列表数据，包括 - 小区名称和唯一 ID 以及平均挂牌价格和历史价格趋势，用于识别城市中受欢迎的住宅区，并比较不同小区的平均房价。"
  },
  "servers": [
    {
      "url": "https://api.justoneapi.com",
      "description": "prod-global（默认）"
    },
    {
      "url": "http://47.117.133.51:30015",
      "description": "prod-cn（中国大陆地区可选）"
    }
  ],
  "paths": {
    "/api/beike/community/list/v1": {
      "get": {
        "tags": [
          "贝壳"
        ],
        "summary": "小区列表",
        "description": "获取贝壳小区列表数据，包括 - 小区名称和唯一 ID 以及平均挂牌价格和历史价格趋势，用于识别城市中受欢迎的住宅区，并比较不同小区的平均房价。",
        "operationId": "getApiBeikeCommunityListV1",
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "description": "用户鉴权令牌。",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "cityId",
            "in": "query",
            "description": "城市ID（例如，北京为'110000'）。",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "condition",
            "in": "query",
            "description": "社区筛选条件。",
            "required": false,
            "schema": {
              "type": "string",
              "default": ""
            }
          },
          {
            "name": "limitOffset",
            "in": "query",
            "description": "分页偏移量，从0开始（例如：0、20、40...）。",
            "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"
                    }
                  }
                }
              }
            }
          }
        },
        "deprecated": true,
        "x-order": "32001200",
        "x-api-version": "v1",
        "x-highlights": []
      }
    }
  },
  "components": {}
}