Skip to content

房产估值

根据城市、地址、面积、用途等字段,检索可比成交 / 挂牌样本,输出总价区间与置信度。

接口

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

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

请求体

Content-Type: application/json

字段类型必填说明示例
citystring行政区划,建议 省/市/区广东省/深圳市/南山区
addressstring小区或详细地址科技园某某小区
buildingAreanumber建筑面积(㎡),须 > 089.5
propertyUsagestringRESIDENTIAL 住宅 / COMMERCIAL 商办 / INDUSTRIAL 工业RESIDENTIAL
houseTypestring户型或物业形态普通住宅
floorinteger所在楼层10
totalFloorsinteger总楼层32
buildYearinteger建成年份2018
materialFileNamestringOCR 材料文件名房产证.jpg
materialRefstringOCR 返回的材料引用
sourcestring对话闭环传 CHATCHAT
chatSessionIdnumber对话会话 ID123

查询参数:callbackUrl(可选)。

创建示例

bash
curl -s -X POST "http://localhost:8080/api/open/v1/property-valuations" \
  -H "Content-Type: application/json" \
  -H "X-Api-Key: aai_你的密钥" \
  -d '{
    "city": "广东省/深圳市/南山区",
    "address": "科技园某某小区",
    "buildingArea": 89.5,
    "propertyUsage": "RESIDENTIAL",
    "houseType": "普通住宅",
    "floor": 10,
    "totalFloors": 32,
    "buildYear": 2018
  }'

创建成功 data 示例:

json
{
  "taskId": 123,
  "valuationNo": "VAL-PROP-20260818-0001",
  "assetType": "PROPERTY",
  "status": "IN_PROGRESS",
  "statusLabel": "估值中",
  "statusUrl": "/api/open/v1/property-valuations/123",
  "message": "任务已受理并开始执行。请轮询 statusUrl 直至 SUCCESS/FAILED,或等待 Webhook;流式请改用 POST .../stream。"
}

查询:

bash
curl -s "http://localhost:8080/api/open/v1/property-valuations/123" \
  -H "X-Api-Key: aai_你的密钥"

成功时 result

金额为人民币元(总价)。

字段类型说明
confidencenumber置信度
effectiveSampleCountinteger有效样本数
minTotalPrice / avgTotalPrice / maxTotalPricenumber总价下限 / 中枢 / 上限
transactionMatrixobject成交样本:min/avg/maxUnitPricemin/avg/maxTotalPrice
listingMatrixobject挂牌样本,结构同上
riskTipsstring[]风险提示
sourcesobject[]样本:sourcesampleTimeareapriceunitPriceurl
referencesobject[]参考来源:sourcepublishDateurlretrievedAt
reasoningSummarystring结论摘要
generatedAtstring生成时间

SDK

ts
const detail = await client.property.valuate({
  city: "广东省/深圳市/南山区",
  address: "科技园某某小区",
  buildingArea: 89.5,
  propertyUsage: "RESIDENTIAL",
  houseType: "普通住宅",
  floor: 10,
  totalFloors: 32,
  buildYear: 2018,
});
console.log(detail.result);

Asset-AI 接口文档