Skip to content

土地估值

根据城市、位置、地号、面积、容积率、土地性质,检索出让 / 挂牌可比样本,输出楼面地价与总价区间。

接口

方法路径说明
POST/api/open/v1/land-valuations创建并后台执行
GET/api/open/v1/land-valuations/{taskId}查询详情
POST/api/open/v1/land-valuations/stream创建并 SSE

通用约定见 约定与通用响应

请求体

Content-Type: application/json

字段类型必填说明示例
citystring行政区划,建议 省/市/区广东省/深圳市/南山区
locationstring地块位置描述科技园南区某地块
landNostring地号 / 宗地号T2024-001
landAreanumber土地面积(㎡),须 > 05000
plotRationumber容积率,须 > 03.5
landNaturestring土地性质,如住宅用地、商服用地、工业用地商业用地
materialFileNamestringOCR 材料文件名
materialRefstringOCR 材料引用
sourcestring对话闭环传 CHAT
chatSessionIdnumber对话会话 ID

查询参数:callbackUrl(可选)。

创建示例

bash
curl -s -X POST "http://localhost:8080/api/open/v1/land-valuations" \
  -H "Content-Type: application/json" \
  -H "X-Api-Key: aai_你的密钥" \
  -d '{
    "city": "广东省/深圳市/南山区",
    "location": "科技园南区某地块",
    "landNo": "T2024-001",
    "landArea": 5000,
    "plotRatio": 3.5,
    "landNature": "商业用地"
  }'

成功时 result

楼面地价单位为 元/㎡min/avg/maxTotalPrice 为总价(万元)。

字段类型说明
confidencenumber置信度
effectiveSampleCountinteger有效样本数
minFloorLandPrice / avgFloorLandPrice / maxFloorLandPricenumber楼面地价区间(元/㎡)
minTotalPrice / avgTotalPrice / maxTotalPricenumber总价区间(万元)
transactionMatrix / listingMatrixobject成交 / 挂牌矩阵(unitPrice 为楼面地价)
riskTipsstring[]风险提示
sourcesobject[]样本来源
referencesobject[]参考资料
reasoningSummarystring结论摘要
generatedAtstring生成时间

SDK

ts
const detail = await client.land.valuate({
  city: "广东省/深圳市/南山区",
  location: "科技园南区某地块",
  landNo: "T2024-001",
  landArea: 5000,
  plotRatio: 3.5,
  landNature: "商业用地",
});

Asset-AI 接口文档