为写字楼租赁、商业地产SaaS提供稳定、实时、高质量的数据接口
https://api.officese.com/v1
— 内测名额即将开放 —
覆盖全国76城,超8万+写字楼楼盘信息,实时更新租金、面积、空置率及原创实拍图库。
每日动态更新租赁信息,精准商圈分布,支持多维度筛选,数据延迟<30分钟。
每栋楼8个实拍角度,含经纬度、拍摄时间、季节标签,版权保障,可直接商用。
99.9% 可用性保障,专属技术支持,高并发低延迟架构,弹性扩容。
# ============================================================
# 华楼网开放平台 API 调用示例
# 基础 URL:https://api.officese.com/v1/buildings
# 认证方式:请求头 X-API-Key
# ============================================================
# ---------- 1. cURL ----------
curl -X GET 'https://api.officese.com/v1/buildings?city=%E4%B8%8A%E6%B5%B7&district=%E5%BE%90%E6%B1%87&building_type=%E5%86%99%E5%AD%97%E6%A5%BC&min_rent=3&max_rent=8&limit=2' \
-H "X-API-Key: your_api_key"
# ---------- 2. Python ----------
import requests
try:
response = requests.get(
'https://api.officese.com/v1/buildings',
headers={'X-API-Key': 'your_api_key'},
params={
'city': '上海',
'district': '徐汇',
'building_type': '写字楼',
'min_rent': 3,
'max_rent': 8,
'limit': 2
}
)
response.raise_for_status()
data = response.json()
print(data)
except requests.exceptions.RequestException as e:
print('请求失败:', e)
# ---------- 3. Node.js ----------
const axios = require('axios');
axios.get('https://api.officese.com/v1/buildings', {
headers: { 'X-API-Key': 'your_api_key' },
params: {
city: '上海',
district: '徐汇',
building_type: '写字楼',
min_rent: 3,
max_rent: 8,
limit: 2
}
})
.then(res => console.log(res.data))
.catch(err => console.error(err.message));
/* ========== 返回数据示例 ==========
{
"code": 200,
"message": "success",
"data": [
{
"building_id": 10086,
"building_name": "徐汇万科中心",
"city": "上海",
"district": "徐汇",
"business_district": "漕河泾",
"address": "定安路55号",
"building_type": "写字楼",
"rent_min": 4.5,
"rent_max": 7.8,
"area_min": 120,
"area_max": 2000,
"tags": ["甲级写字楼", "LEED金级", "地铁上盖"],
"location": {
"longitude": 121.4345,
"latitude": 31.1897,
"coord_system": "GCJ-02"
},
"images": [
{
"image_id": 10625,
"url": "https://img.officese.com/upload/2025/03/12/27nbvcrjs46bmec3mqmow1a07jx6spxq.jpg",
"width": 2000,
"height": 2000,
"file_size_kb": 824,
"angle": "右街景",
"season": "秋季",
"time_period": "下午",
"is_main": false,
"copyright_owner": "华楼网",
"license_type": "standard",
"has_watermark": false,
"image_tags": ["办公写字楼", "现代高层建筑", "玻璃幕墙", "商业综合体", "城市天际线"],
"gps": {
"longitude": 121.4347,
"latitude": 31.1899,
"coord_system": "GCJ-02"
},
"shoot_time": "2025-10-15 14:30:00",
"photographer": "张三",
"blockchain_hash": "0x7d8e9f2a3b4c5d6e7f8a9b0c1d2e3f4a5b6c7d8e9f0a1b2c3d4e5f6a7b8c9d0e1f2",
"status": "approved"
}
]
},
{
"building_id": 10087,
"building_name": "光启城",
"city": "上海",
"district": "徐汇",
"business_district": "徐家汇",
"address": "宜山路425号",
"building_type": "写字楼",
"rent_min": 3.2,
"rent_max": 5.8,
"area_min": 80,
"area_max": 1500,
"tags": ["甲级写字楼", "地铁上盖", "商业配套"],
"location": {
"longitude": 121.4321,
"latitude": 31.1875,
"coord_system": "GCJ-02"
},
"images": [
{
"image_id": 10626,
"url": "https://img.officese.com/upload/2025/03/15/8f3h2k9d7g4j2k1h6j5g4f3d2s1a5x7c9v.jpg",
"width": 2000,
"height": 2000,
"file_size_kb": 892,
"angle": "正面",
"season": "春季",
"time_period": "上午",
"is_main": true,
"copyright_owner": "华楼网",
"license_type": "standard",
"has_watermark": false,
"image_tags": ["现代建筑", "玻璃幕墙", "商业广场", "交通便利"],
"gps": {
"longitude": 121.4322,
"latitude": 31.1876,
"coord_system": "GCJ-02"
},
"shoot_time": "2025-04-10 10:15:00",
"photographer": "李四",
"blockchain_hash": "0xa1b2c3d4e5f6a7b8c9d0e1f2a3b4c5d6e7f8a9b0c1d2e3f4a5b6c7d8e9f0a1b2",
"status": "approved"
}
]
}
],
"pagination": {
"total": 127,
"limit": 2,
"offset": 0,
"next": "https://api.officese.com/v1/buildings?city=%E4%B8%8A%E6%B5%B7&district=%E5%BE%90%E6%B1%87&building_type=%E5%86%99%E5%AD%97%E6%A5%BC&min_rent=3&max_rent=8&limit=2&offset=2"
}
}
*/
抢先获取 API 测试密钥、技术文档及上线通知