591 租屋
台灣最大的租屋平台(rent.591.com.tw)— 搜尋房源與查看詳情。
- 房源列表:依地區、類型、價格搜尋租屋
- 房源詳情:完整房源資訊含設備、聯絡人與描述
房源列表
GET /rent591/listings — 2 點數
搜尋 591 租屋房源。
| 參數 | 類型 | 必填 | 預設 | 說明 |
|---|---|---|---|---|
region | integer | 否 | 1 | 地區 ID(1=台北市, 3=新北市, 6=桃園市, 5=新竹市, 8=台中市, 15=台南市, 17=高雄市) |
first_row | integer | 否 | 0 | 分頁偏移量(0, 30, 60, …) |
kind | integer | 否 | — | 房屋類型(1=整層住家, 2=獨立套房, 3=分租套房, 4=雅房, 8=車位) |
section | integer | 否 | — | 地區內的區域 ID |
price | string | 否 | — | 價格範圍(例如 5000_10000$、10000_20000$) |
count | integer | 否 | 30 | 房源數量(最多 30) |
cURL
curl -H "x-api-key: sk_byc_xxx" \
"https://api.bycrawl.com/rent591/listings?region=1&kind=2&price=10000_20000$"回應
{
"total": 13576,
"listings": [
{
"id": 20734125,
"title": "近捷運獨立套房",
"url": "https://rent.591.com.tw/20734125",
"kind": "獨立套房",
"price": "15,200",
"priceUnit": "元/月",
"address": "中山區-長春路",
"area": "6.8坪",
"floor": "4F/12F",
"communityName": "世界觀光大廈",
"communityId": 5627,
"roleName": "仲介陳小姐",
"browseCount": 429,
"refreshTime": "20天前更新",
"cover": "https://img1.591.com.tw/house/2026/02/25/xxx.jpg",
"tags": ["近捷運", "拎包入住", "有電梯"]
}
],
"firstRow": 0
}GET /rent591/listings/:listingId — 2 點數
依 ID 取得租屋房源詳情。
| 參數 | 類型 | 必填 | 預設 | 說明 |
|---|---|---|---|---|
listingId | integer | 是 | — | 591 房源 ID |
cURL
curl -H "x-api-key: sk_byc_xxx" \
https://api.bycrawl.com/rent591/listings/20734125回應
{
"id": 20734125,
"title": "近捷運獨立套房",
"url": "https://rent.591.com.tw/20734125",
"status": "open",
"kind": 2,
"regionId": 1,
"sectionId": 3,
"price": "15,200",
"priceUnit": "元/月",
"deposit": "押金二個月",
"address": "中山區長春路",
"communityName": "世界觀光大廈",
"tags": ["近捷運", "拎包入住"],
"facilities": ["冰箱", "洗衣機", "冷氣", "網路"],
"description": "近捷運站,交通便利...",
"contact": {
"name": "陳小姐",
"role": "仲介",
"company": "聯勝開發有限公司"
}
}