获取案例散点图信息接口

获取案例散点图信息接口

功能描述:根据城市的小区名,获取该小区在传入的时间到往前时长内的案例组成案例散点图。

申请试用:

支持请求协议:http

请求方式:get

支持格式:json

请求参数:

  • 参数 数据类型 是否必填 说明
  • city_nameString必填城市名
  • cnameString必填小区名
  • countint必填返回条数
  • casetimedate选填案例时间(不传默认为当前时间)
  • timespanint选填时长(不传默认为3:代表三个月)
  • key_idString必填数字验证签名ID
  • access_signatureString必填数字验证签名
  • time_stampLong必填时间戳

返回参数

  • 参数 数据模型 说明
  • Successbool是否成功
  • DataJSON结果数据
  • buildingCompletedYearInt建成年代
  • caseTypeString案例类型
  • roomNumTypeInt居室类型
  • areaDouble面积
  • towardString朝向
  • totalFloorInt总楼层
  • floorInt所在楼层
  • totalPricedouble总价
  • pricedouble单价
  • caseTimedate案例时间

返回数据样式

{
    "Success": true,
    "Data": [
        {
            "buildingCompletedYear": 2001,
            "caseType": "挂牌",
            "roomNumType": 2,
            "area": 75.03,
            "toward": "南",
            "totalFloor": 28,
            "floor": 2,
            "totalPrice": 265,
            "price": 35300,
            "caseTime": 1429146811000
        },
        {
            "buildingCompletedYear": 2002,
            "caseType": "挂牌",
            "roomNumType": 2,
            "area": 88,
            "toward": "南北",
            "totalFloor": 6,
            "floor": 5,
            "totalPrice": 300,
            "price": 34100,
            "caseTime": 1429185831000
        }
    ]
}