Property Valuation Germany
收藏Property Valuation Germany 数据集概述
基本信息
- 数据集名称: Property Valuation Germany
- 类别: Artificial Intelligence/Machine Learning
- 提供方: Kretronik GmbH
- 订阅者数量: 57
- API版本: v1 (current)
- API端点: POST /api/estimate (用于评估价格和租金)
- 产品网站: https://www.somantic.net
性能与评级
- 流行度: 9.7
- 服务等级: 91%
- 延迟: 707ms
- 测试通过率: 85%
订阅计划与定价
- BASIC: $0.00 / 月
- PRO: $25.00 / 月
- ULTRA: $50.00 / 月
- MEGA: $80.00 / 月
功能描述
该API用于获取德国房产的价格和租金评估。评估基于用户感兴趣区域内类似房产的信息,数据来源于德国各大房产平台。其功能类似于Zillow的“Zestimate”。
支持的数据源平台
当前支持的平台
- https://www.immobilienscout24.de
- https://immowelt.de
- https://immonet.de
- https://kleinanzeigen.de
- https://www.ohne-makler.net/
- https://www.private-immobilienangebote.de/
- https://www.immobilien.de
- https://immobilienmarkt.faz.net
- https://ovbimmo.de
- https://immo.swp.de
- https://vrm-immo.de/
开发中的平台
- meinstadt.de
- wohnung jetzt
- regionalimmobilien
- sparkasse immobilien
技术实现与示例
请求示例(Python)
评估慕尼黑一套公寓的价格和租金。 python import requests
url = "https://property-valuation-germany.p.rapidapi.com/api/estimate"
payload = { "street": "Admiralsbogen 45", "postcode": 80939, "square_meters": 100.5, "rooms": 2.5, "year_of_construction": 1990, "typ": "wohnung", # 评估房屋请选择 "haus" "city": "München" } headers = { "x-rapidapi-key": "YOUR_RAPID_API_KEY", "x-rapidapi-host": "property-valuation-germany.p.rapidapi.com", "Content-Type": "application/json" }
response = requests.post(url, json=payload, headers=headers)
print(response.json())
响应示例(简化)
json { "estimates": { "price": 809078.9184668114, "rent": 2483.5751209847663, "similar_properties": [ { "action": "kaufen", "immo_id": "2h2vt5s", "is_active": true, "lat": 48.214884999999995, "lon": 11.60541, "price": 297000, "price_per_square_meter": 3960, "rent_per_square_meter": null, "rent_price": null, "rooms": 3, "spider": "immowelt", "square_meter": 75, "title": "3-Zimmer-Wohnung in Schwabing-Freimann zur Kapitalanlage oder Eigennutzung", "uptime_date": "2025-01-31T15:01:2", "url": "https://www.immowelt.de/expose/2h2vt5s", "year_of_construction": "1989-01-01T00:00:0" } // ... 更多类似房产 ] }, "location": { "lat": 48.204453349999994, "lon": 11.612726981653154 }, "typ": "wohnung" }
评估方法说明
目标房产的租金和价格评估基于该区域内similar_properties(类似房产)的平均租金和价格,避免了“黑箱”评估。



