Bright Dataを使用した不動産市場レポート
中級
これはAI分野の自動化ワークフローで、9個のノードを含みます。主にHtml, HttpRequest, GoogleSheets, ScheduleTriggerなどのノードを使用、AI技術を活用したスマート自動化を実現。 Bright Data と n8n を使った自動不動産マーケットレポート
前提条件
- •ターゲットAPIの認証情報が必要な場合あり
- •Google Sheets API認証情報
カテゴリー
ワークフロープレビュー
ノード接続関係を可視化、ズームとパンをサポート
ワークフローをエクスポート
以下のJSON設定をn8nにインポートして、このワークフローを使用できます
{
"id": "TmVkR7VvM0nMMgE8",
"meta": {
"instanceId": "60046904b104f0f72b2629a9d88fe9f676be4035769f1f08dad1dd38a76b9480",
"templateCredsSetupCompleted": true
},
"name": "Property_Market_Report_via_Bright_data",
"tags": [],
"nodes": [
{
"id": "8891d7b5-79a7-4270-9bf2-374928f36c2a",
"name": "付箋9",
"type": "n8n-nodes-base.stickyNote",
"position": [
-2160,
260
],
"parameters": {
"color": 4,
"width": 1300,
"height": 320,
"content": "=======================================\n WORKFLOW ASSISTANCE\n=======================================\nFor any questions or support, please contact:\n Yaron@nofluff.online\n\nExplore more tips and tutorials here:\n - YouTube: https://www.youtube.com/@YaronBeen/videos\n - LinkedIn: https://www.linkedin.com/in/yaronbeen/\n=======================================\n"
},
"typeVersion": 1
},
{
"id": "edafc05e-31ee-4451-b0cf-89f83db0cbca",
"name": "付箋4",
"type": "n8n-nodes-base.stickyNote",
"position": [
-2160,
600
],
"parameters": {
"color": 4,
"width": 1289,
"height": 2218,
"content": "# 📊 **Commercial Real Estate Weekly Report Automation**\n\nThis automation helps you **scrape commercial property listings** (like office and retail spaces) from top websites using **Bright Data**, and automatically stores that data into a **Google Sheet**, ready for reporting or analysis.\n\n---\n\n## 🔹 **SECTION 1: 🔁 Automate + Scrape Listings**\n\n### 🧩 1. 📆 Weekly Market Trigger\n\n**Node Name:** `Weekly Market Trigger`\n**What it does:**\nThis node automatically starts the workflow every week (e.g., Monday at 8 AM). You don't have to press a button — it just runs in the background.\n\n🧠 **Beginner Benefit:**\n\n> Automate your market research without ever missing a week. Set it once and let it run!\n\n---\n\n### 🧩 2. 🌐 Fetch Listings via Bright Data\n\n**Node Name:** `Fetch Listings via Bright Data`\n**What it does:**\nThis node sends a `POST` request to **Bright Data Web Unlocker API**, which is a tool that bypasses captchas, anti-bot systems, and complex JavaScript-loaded pages to give you clean HTML content.\n\n**It targets a URL like:**\n\n```\nhttps://www.loopnet.com/for-lease/office/san-francisco-ca/\n```\n\n🛡️ Bright Data ensures the page is accessed as if it's being opened by a real user — no blocks, no errors.\n\n🧠 **Beginner Benefit:**\n\n> Even if a website has bot protections or hidden content, this node ensures you can access the data consistently and safely.\n\n---\n\n## 🔸 **SECTION 2: 🧱 Extract + Save Listings**\n\n### 🧩 3. 🧱 Extract Listing Details (HTML)\n\n**Node Name:** `Extract Listing Details (HTML)`\n**What it does:**\nIt scans the HTML content from the Bright Data response and pulls out important fields like:\n\n* 🏢 Property Title\n* 💵 Price\n* 📍 Address\n* 📐 Size\n* 🔗 Link to the listing\n\nUses **CSS selectors** like `.listing-title` or `.price-info` to find this info.\n\n🧠 **Beginner Benefit:**\n\n> This node turns messy website code into clean, structured data you can actually use in a report or analysis.\n\n---\n\n### 🧩 4. 📊 Save to Google Sheets\n\n**Node Name:** `Save to Google Sheets`\n**What it does:**\nThis final step **appends each extracted listing** into a Google Sheet in real time.\n\nYou’ll get a spreadsheet like this:\n\n| Title | Price | Address | Size | URL |\n| ----- | ----- | ------- | ---- | --- |\n\n🧠 **Beginner Benefit:**\n\n> Your scraped data is saved instantly where you can filter, chart, or share it with clients or your team.\n\n---\n\n## 🚀 **What You Can Do With This Workflow**\n\n* 📈 Track weekly commercial real estate trends\n* 🧠 Compare price per square foot by neighborhood\n* 📨 Send reports to clients or investors\n* 🔁 Use Google Sheets to trigger visual dashboards\n\n---\n\n## 🎁 Want to Make It Better?\n\n* Add a ✉️ **Slack or Email notification** node at the end\n* Use a 🪄 **Markdown Generator** to create beautiful weekly summaries\n* Append data to **separate tabs by week** for historical tracking\n\n---\n"
},
"typeVersion": 1
},
{
"id": "f1c420c9-ad46-48a5-83cf-f43a6377241c",
"name": "週次市場トリガー",
"type": "n8n-nodes-base.scheduleTrigger",
"position": [
-400,
1660
],
"parameters": {
"rule": {
"interval": [
{
"field": "weeks",
"triggerAtDay": [
1
],
"triggerAtHour": 9
}
]
}
},
"typeVersion": 1.2
},
{
"id": "a8acbc10-66cf-4568-b81d-4fce0ec576e7",
"name": "Bright Data経由で物件情報を取得",
"type": "n8n-nodes-base.httpRequest",
"position": [
-180,
1660
],
"parameters": {
"url": "https://api.brightdata.com/request",
"method": "POST",
"options": {},
"sendBody": true,
"sendHeaders": true,
"bodyParameters": {
"parameters": [
{
"name": "zone",
"value": "n8n_unblocker"
},
{
"name": "url",
"value": "https://www.crexi.com/properties?geo=san-francisco-ca"
},
{
"name": "country",
"value": "us"
},
{
"name": "format",
"value": "raw"
}
]
},
"headerParameters": {
"parameters": [
{
"name": "Authorization",
"value": "Bearer API_KEY"
}
]
}
},
"typeVersion": 4.2
},
{
"id": "800989c9-af12-4c5f-b7a4-4a2ea290110f",
"name": "物件詳細情報を抽出(HTML)",
"type": "n8n-nodes-base.html",
"position": [
120,
1660
],
"parameters": {
"options": {},
"operation": "extractHtmlContent",
"extractionValues": {
"values": [
{
"key": "Price",
"cssSelector": "<span _ngcontent-ng-c2107907900=\"\" data-cy=\"propertyPrice\" class=\"ng-star-inserted\">$3,995,000</span>",
"returnArray": true
}
]
}
},
"typeVersion": 1.2
},
{
"id": "54724fca-c18d-44df-a0e7-f267ddd09d73",
"name": "Googleシートに保存",
"type": "n8n-nodes-base.googleSheets",
"position": [
340,
1660
],
"parameters": {
"operation": "append",
"sheetName": {
"__rl": true,
"mode": "list",
"value": ""
},
"documentId": {
"__rl": true,
"mode": "list",
"value": ""
}
},
"credentials": {
"googleSheetsOAuth2Api": {
"id": "r2mDaisH6e9VkwHl",
"name": "Google Sheets account"
}
},
"typeVersion": 4.6
},
{
"id": "3d8af14f-3cb5-4f4f-aa71-be521322c113",
"name": "付箋3",
"type": "n8n-nodes-base.stickyNote",
"position": [
-440,
720
],
"parameters": {
"color": 6,
"width": 420,
"height": 1120,
"content": "## 🔹 **SECTION 1: 🔁 Automate + Scrape Listings**\n\n### 🧩 1. 📆 Weekly Market Trigger\n\n**Node Name:** `Weekly Market Trigger`\n**What it does:**\nThis node automatically starts the workflow every week (e.g., Monday at 8 AM). You don't have to press a button — it just runs in the background.\n\n🧠 **Beginner Benefit:**\n\n> Automate your market research without ever missing a week. Set it once and let it run!\n\n---\n\n### 🧩 2. 🌐 Fetch Listings via Bright Data\n\n**Node Name:** `Fetch Listings via Bright Data`\n**What it does:**\nThis node sends a `POST` request to **Bright Data Web Unlocker API**, which is a tool that bypasses captchas, anti-bot systems, and complex JavaScript-loaded pages to give you clean HTML content.\n\n**It targets a URL like:**\n\n```\nhttps://www.loopnet.com/for-lease/office/san-francisco-ca/\n```\n\n🛡️ Bright Data ensures the page is accessed as if it's being opened by a real user — no blocks, no errors.\n\n🧠 **Beginner Benefit:**\n\n> Even if a website has bot protections or hidden content, this node ensures you can access the data consistently and safely.\n\n---\n"
},
"typeVersion": 1
},
{
"id": "2fd2d9bb-ec9c-48c7-a745-bd5b653e76b5",
"name": "付箋",
"type": "n8n-nodes-base.stickyNote",
"position": [
60,
700
],
"parameters": {
"color": 5,
"width": 420,
"height": 1140,
"content": "## 🔸 **SECTION 2: 🧱 Extract + Save Listings**\n\n### 🧩 3. 🧱 Extract Listing Details (HTML)\n\n**Node Name:** `Extract Listing Details (HTML)`\n**What it does:**\nIt scans the HTML content from the Bright Data response and pulls out important fields like:\n\n* 🏢 Property Title\n* 💵 Price\n* 📍 Address\n* 📐 Size\n* 🔗 Link to the listing\n\nUses **CSS selectors** like `.listing-title` or `.price-info` to find this info.\n\n🧠 **Beginner Benefit:**\n\n> This node turns messy website code into clean, structured data you can actually use in a report or analysis.\n\n---\n\n### 🧩 4. 📊 Save to Google Sheets\n\n**Node Name:** `Save to Google Sheets`\n**What it does:**\nThis final step **appends each extracted listing** into a Google Sheet in real time.\n\nYou’ll get a spreadsheet like this:\n\n| Title | Price | Address | Size | URL |\n| ----- | ----- | ------- | ---- | --- |\n\n🧠 **Beginner Benefit:**\n\n> Your scraped data is saved instantly where you can filter, chart, or share it with clients or your team.\n\n---\n"
},
"typeVersion": 1
},
{
"id": "82aa81aa-39af-410e-9434-ee6189aabc7b",
"name": "付箋5",
"type": "n8n-nodes-base.stickyNote",
"position": [
560,
700
],
"parameters": {
"color": 7,
"width": 380,
"height": 240,
"content": "## I’ll receive a tiny commission if you join Bright Data through this link—thanks for fueling more free content!\n\n### https://get.brightdata.com/1tndi4600b25"
},
"typeVersion": 1
}
],
"active": false,
"pinData": {},
"settings": {
"executionOrder": "v1"
},
"versionId": "b60c01a8-a0b5-43de-bde0-5fa9fd1bb732",
"connections": {
"f1c420c9-ad46-48a5-83cf-f43a6377241c": {
"main": [
[
{
"node": "a8acbc10-66cf-4568-b81d-4fce0ec576e7",
"type": "main",
"index": 0
}
]
]
},
"800989c9-af12-4c5f-b7a4-4a2ea290110f": {
"main": [
[
{
"node": "54724fca-c18d-44df-a0e7-f267ddd09d73",
"type": "main",
"index": 0
}
]
]
},
"a8acbc10-66cf-4568-b81d-4fce0ec576e7": {
"main": [
[
{
"node": "800989c9-af12-4c5f-b7a4-4a2ea290110f",
"type": "main",
"index": 0
}
]
]
}
}
}よくある質問
このワークフローの使い方は?
上記のJSON設定コードをコピーし、n8nインスタンスで新しいワークフローを作成して「JSONからインポート」を選択、設定を貼り付けて認証情報を必要に応じて変更してください。
このワークフローはどんな場面に適していますか?
中級 - 人工知能
有料ですか?
このワークフローは完全無料です。ただし、ワークフローで使用するサードパーティサービス(OpenAI APIなど)は別途料金が発生する場合があります。
関連ワークフロー
Bright Dataを使って起こるべきイベントをスクレイピング
Bright Dataとn8nによる自動イベント発見
Code
Html
Http Request
+
Code
Html
Http Request
11 ノードYaron Been
人工知能
Bright Dataを活用した競合価格監視
Bright Dataとn8nを使用した自動のな競合価格モニタリング
If
Code
Html
+
If
Code
Html
15 ノードYaron Been
人工知能
Bright Data を通じた自動フリーランスター gigs スクレイピング
Bright Dataとn8nを使用したフリーランスのフリーランス仕事フォインダーの自動化
Set
Html
Http Request
+
Set
Html
Http Request
11 ノードYaron Been
人工知能
Bright Dataを使った自動化フォーラムモニタリング
Bright Dataとn8nを使ったフォーラム監視の自動化
Set
Code
Html
+
Set
Code
Html
17 ノードYaron Been
人工知能
研究論文スパイダーをGoogleスプシへ
Bright Dataとn8nを使った研究論文収集の自動化
Set
Code
Html
+
Set
Code
Html
12 ノードYaron Been
人工知能
CrunchBase投資家データ
投資家インテリジェンスの自動化:CrunchBaseからGoogleシートデータコレクター
Code
Http Request
Google Sheets
+
Code
Http Request
Google Sheets
8 ノードYaron Been
財務
ワークフロー情報
難易度
中級
ノード数9
カテゴリー1
ノードタイプ5
作成者
Yaron Been
@yaron-nofluffBuilding AI Agents and Automations | Growth Marketer | Entrepreneur | Book Author & Podcast Host If you need any help with Automations, feel free to reach out via linkedin: https://www.linkedin.com/in/yaronbeen/ And check out my Youtube channel: https://www.youtube.com/@YaronBeen/videos
外部リンク
n8n.ioで表示 →
このワークフローを共有