BuiltWithの週次サマリー
中級
これはMarketing分野の自動化ワークフローで、12個のノードを含みます。主にCode, Gmail, HttpRequest, GoogleSheets, Agentなどのノードを使用。 BuiltWith・GPT-4o・Google Gmailを使った自動化された週次技術スタックレポート
前提条件
- •Googleアカウント + Gmail API認証情報
- •ターゲットAPIの認証情報が必要な場合あり
- •Google Sheets API認証情報
- •OpenAI API Key
カテゴリー
ワークフロープレビュー
ノード接続関係を可視化、ズームとパンをサポート
ワークフローをエクスポート
以下のJSON設定をn8nにインポートして、このワークフローを使用できます
{
"id": "8owN5INh7X8vZtVY",
"meta": {
"instanceId": "84ad02d6104594179f43f1ce9cfe3a81637b2faedb57dafcb9e649b7542988db",
"templateCredsSetupCompleted": true
},
"name": "BuiltWith Weekly Summary",
"tags": [],
"nodes": [
{
"id": "94dc7e06-7eae-429a-a7ac-a732452b430f",
"name": "技術スタック情報抽出",
"type": "n8n-nodes-base.code",
"position": [
900,
0
],
"parameters": {
"jsCode": "const result = $json.Results?.[0];\nconst domain = result?.Lookup || null;\nconst path = result?.Result?.Paths?.[0];\nconst url = path?.Url || null;\n\nlet extracted = null;\n\n// Loop through Groups to find the first available Tech entry\nfor (const group of path?.Groups || []) {\n const category = group.Name;\n const tech = group.Tech?.[0];\n \n if (tech) {\n extracted = {\n Technology: tech.Name,\n Category: category,\n \"First Detected\": tech.FirstDetected,\n \"Last Detected\": tech.LastDetected,\n Domain: domain,\n URL: url\n };\n break; // Stop after first match\n }\n}\n\nreturn extracted ? [extracted] : [];\n"
},
"typeVersion": 2
},
{
"id": "609233cd-e8d6-4896-8e63-f065305022e5",
"name": "OpenAIチャットモデル",
"type": "@n8n/n8n-nodes-langchain.lmChatOpenAi",
"position": [
1200,
220
],
"parameters": {
"model": {
"__rl": true,
"mode": "list",
"value": "gpt-4o-mini"
},
"options": {}
},
"credentials": {
"openAiApi": {
"id": "wYwTjEv45IzlAOAu",
"name": "OpenAi account 2"
}
},
"typeVersion": 1.2
},
{
"id": "7a9ebaf7-2abf-4e1b-ad9a-bed19adc9bd5",
"name": "週次トリガー",
"type": "n8n-nodes-base.scheduleTrigger",
"position": [
180,
0
],
"parameters": {
"rule": {
"interval": [
{
"field": "weeks",
"triggerAtDay": [
1
],
"triggerAtHour": 9
}
]
}
},
"typeVersion": 1.2
},
{
"id": "0750f0ed-8dd0-4a67-815a-dbb6c5d0c45d",
"name": "ドメインリスト取得",
"type": "n8n-nodes-base.googleSheets",
"position": [
380,
0
],
"parameters": {
"options": {},
"sheetName": {
"__rl": true,
"mode": "list",
"value": "gid=0",
"cachedResultUrl": "https://docs.google.com/spreadsheets/d/1byVKIR8vdDYc8HbrKVlIXw48dVMvcU23SMczwt4E8S8/edit#gid=0",
"cachedResultName": "Sheet1"
},
"documentId": {
"__rl": true,
"mode": "list",
"value": "1byVKIR8vdDYc8HbrKVlIXw48dVMvcU23SMczwt4E8S8",
"cachedResultUrl": "https://docs.google.com/spreadsheets/d/1byVKIR8vdDYc8HbrKVlIXw48dVMvcU23SMczwt4E8S8/edit?usp=drivesdk",
"cachedResultName": "BuiltWith weekly ecommerce summary"
}
},
"credentials": {
"googleSheetsOAuth2Api": {
"id": "Rp7XiR3hxJfv03ZO",
"name": "Google Sheets account"
}
},
"typeVersion": 4.5
},
{
"id": "d5f6b578-a70f-4768-86c8-76dac077c99a",
"name": "技術スタック取得(BuiltWith API)",
"type": "n8n-nodes-base.httpRequest",
"position": [
680,
0
],
"parameters": {
"url": "https://api.builtwith.com/v21/api.json",
"options": {},
"sendQuery": true,
"queryParameters": {
"parameters": [
{
"name": "KEY",
"value": "YOUR_API_KEY"
},
{
"name": "LOOKUP",
"value": "={{ $json['Domain '] }}"
}
]
}
},
"typeVersion": 4.2
},
{
"id": "7a85fed1-df8e-4fb2-bcf9-aed9fdbf86af",
"name": "スタックサマリー生成(AI)",
"type": "@n8n/n8n-nodes-langchain.agent",
"position": [
1220,
0
],
"parameters": {
"text": "=Provide summary of the data that is scraped from BuiltWith\n\nDomain: {{ $json.Domain }}\nTechnology: {{ $json.Technology }}\nCategory: {{ $json.Category }}\nFirst Detected: {{ $json['First Detected'] }}\nLast Detected: {{ $json['Last Detected'] }}\nURL: {{ $json.URL }}",
"options": {},
"promptType": "define"
},
"typeVersion": 1.9
},
{
"id": "3057b031-183a-4f84-be77-0ce53418203b",
"name": "サマリーメール送信",
"type": "n8n-nodes-base.gmail",
"position": [
1580,
0
],
"webhookId": "05291794-346e-453c-985a-7c4fd12620f2",
"parameters": {
"sendTo": "shahkar.genai@gmail.com",
"message": "={{ $json.output }}",
"options": {
"appendAttribution": false
},
"subject": "Weekly BuitlWith Ecommerce Platform Summary",
"emailType": "text"
},
"credentials": {
"gmailOAuth2": {
"id": "noKcKj5FEpHHvboL",
"name": "Gmail account"
}
},
"typeVersion": 2.1
},
{
"id": "fe050e42-81ae-43e2-bb7f-899f9a0f1029",
"name": "付箋",
"type": "n8n-nodes-base.stickyNote",
"position": [
120,
-1380
],
"parameters": {
"color": 6,
"width": 440,
"height": 1560,
"content": "## 📦 **Section 1: Data Collection Stage**\n\n**(Nodes: 1️⃣ Schedule Trigger + 2️⃣ Fetch Domain List)**\n\n### 🔁 1. Weekly Automation Trigger\n\n🕘 **Node Name: `Weekly Summary Trigger`**\n⏰ **What it does:**\nThis node kicks off the entire workflow **automatically every Monday at 9 AM** — no manual work needed!\n\n💡 **Think of it like a morning alarm** for your workflow. Every week, it starts the process so you never forget to analyze the tech stacks again.\n\n---\n\n### 📄 2. Read Domains from Google Sheets\n\n🗂️ **Node Name: `Fetch Domain List`**\n📥 **What it does:**\nThis node goes into your **Google Sheet** and pulls a list of ecommerce **website domains** (like `nike.com`, `asos.com`, etc.)\n\n🔗 *You just need to keep updating your Google Sheet whenever you want to analyze new ecommerce websites.*\n\n---\n\n### ✅ **Summary of Section 1:**\n\nThis section **automates the start** and pulls the **input data (website list)** from a central, editable place (Google Sheets).\n\n---\n\n"
},
"typeVersion": 1
},
{
"id": "55d142da-8cf6-4f84-bb38-d9311eb8e094",
"name": "付箋1",
"type": "n8n-nodes-base.stickyNote",
"position": [
620,
-1380
],
"parameters": {
"color": 5,
"width": 440,
"height": 1560,
"content": "# 🧠 **Section 2: Tech Stack Intelligence Stage**\n\n**(Nodes: 3️⃣ Get Tech Stack + 4️⃣ Parse Tech Info)**\n\n### 🌐 3. Fetch Tech Stack via BuiltWith\n\n🔧 **Node Name: `Get Tech Stack (BuiltWith API)`**\n📡 **What it does:**\nThis node sends each domain from the sheet to [BuiltWith](https://builtwith.com) — a powerful tool that tells you **which technologies** a website is using.\n\n💬 For example:\n`nike.com` → Shopify, Google Analytics, Facebook Pixel, etc.\n\n📬 It does this using a GET request from BuiltWith’s API endpoint:\n\n```\nGET https://api.builtwith.com/\n```\n\n---\n\n### 🧾 4. Extract Useful Info\n\n🧮 **Node Name: `Parse Tech Stack Details`**\n📤 **What it does:**\nThe raw response from BuiltWith can be messy. This node **cleans up the data** and pulls only what’s **relevant** — like ecommerce platforms, analytics tools, and payment gateways.\n\n🔍 *It extracts only the gold from the data mine.*\n\n---\n\n### ✅ **Summary of Section 2:**\n\nThis section **fetches and organizes** advanced tech insights about each ecommerce site. No need for you to visit every site or dig through source code!\n\n---\n\n"
},
"typeVersion": 1
},
{
"id": "ddb1135e-3bd4-4b80-aa00-c070ed7722a7",
"name": "付箋2",
"type": "n8n-nodes-base.stickyNote",
"position": [
1120,
-1100
],
"parameters": {
"color": 3,
"width": 620,
"height": 1460,
"content": "## 💌 **Section 3: Smart Summary & Delivery**\n\n**(Nodes: 5️⃣ Generate Stack Summary + 6️⃣ Send Email)**\n\n### 🤖 5. Generate Tech Summary with AI\n\n🧠 **Node Name: `Generate Stack Summary (AI)`**\n📋 **What it does:**\nThis is where the magic happens! It uses **OpenAI Chat Model** to analyze and summarize the tech stack for each domain in **clear, readable language**.\n\n🧑💻 Instead of showing raw JSON or tool names, it says:\n\n> *“Nike.com uses Shopify for its storefront, integrates Google Tag Manager for analytics, and uses Klarna for payment processing.”*\n\n📈 You can easily forward this to clients, managers, or teammates.\n\n---\n\n### 📬 6. Email the Summary\n\n📨 **Node Name: `Send Summary Email`**\n📧 **What it does:**\nFinally, this node **sends the generated summaries via Gmail** to a specified email address — or even multiple addresses.\n\n💡 You can customize the subject, recipient list, and message format easily.\n\n---\n\n### ✅ **Summary of Section 3:**\n\nThis section turns complex data into **natural-language insights** and delivers them **automatically** via email. It's like having your own tech intelligence assistant!\n\n---\n\n"
},
"typeVersion": 1
},
{
"id": "b2c9dc89-87f5-4921-8f98-4dd20601e46a",
"name": "付箋9",
"type": "n8n-nodes-base.stickyNote",
"position": [
-1560,
-1360
],
"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": "0603059d-4e1b-4fa1-b9c5-17b75a40ba56",
"name": "付箋4",
"type": "n8n-nodes-base.stickyNote",
"position": [
-1560,
-1020
],
"parameters": {
"color": 4,
"width": 1289,
"height": 3398,
"content": "## 🧩 **Automated Tech Stack Reporting Workflow**\n\n🎯 *Goal: Automatically fetch and summarize the technology stacks of ecommerce domains every week and email the summary.*\n\n---\n\n## 📦 **Section 1: Data Collection Stage**\n\n**(Nodes: 1️⃣ Schedule Trigger + 2️⃣ Fetch Domain List)**\n\n### 🔁 1. Weekly Automation Trigger\n\n🕘 **Node Name: `Weekly Summary Trigger`**\n⏰ **What it does:**\nThis node kicks off the entire workflow **automatically every Monday at 9 AM** — no manual work needed!\n\n💡 **Think of it like a morning alarm** for your workflow. Every week, it starts the process so you never forget to analyze the tech stacks again.\n\n---\n\n### 📄 2. Read Domains from Google Sheets\n\n🗂️ **Node Name: `Fetch Domain List`**\n📥 **What it does:**\nThis node goes into your **Google Sheet** and pulls a list of ecommerce **website domains** (like `nike.com`, `asos.com`, etc.)\n\n🔗 *You just need to keep updating your Google Sheet whenever you want to analyze new ecommerce websites.*\n\n---\n\n### ✅ **Summary of Section 1:**\n\nThis section **automates the start** and pulls the **input data (website list)** from a central, editable place (Google Sheets).\n\n---\n\n## 🧠 **Section 2: Tech Stack Intelligence Stage**\n\n**(Nodes: 3️⃣ Get Tech Stack + 4️⃣ Parse Tech Info)**\n\n### 🌐 3. Fetch Tech Stack via BuiltWith\n\n🔧 **Node Name: `Get Tech Stack (BuiltWith API)`**\n📡 **What it does:**\nThis node sends each domain from the sheet to [BuiltWith](https://builtwith.com) — a powerful tool that tells you **which technologies** a website is using.\n\n💬 For example:\n`nike.com` → Shopify, Google Analytics, Facebook Pixel, etc.\n\n📬 It does this using a GET request from BuiltWith’s API endpoint:\n\n```\nGET https://api.builtwith.com/\n```\n\n---\n\n### 🧾 4. Extract Useful Info\n\n🧮 **Node Name: `Parse Tech Stack Details`**\n📤 **What it does:**\nThe raw response from BuiltWith can be messy. This node **cleans up the data** and pulls only what’s **relevant** — like ecommerce platforms, analytics tools, and payment gateways.\n\n🔍 *It extracts only the gold from the data mine.*\n\n---\n\n### ✅ **Summary of Section 2:**\n\nThis section **fetches and organizes** advanced tech insights about each ecommerce site. No need for you to visit every site or dig through source code!\n\n---\n\n## 💌 **Section 3: Smart Summary & Delivery**\n\n**(Nodes: 5️⃣ Generate Stack Summary + 6️⃣ Send Email)**\n\n### 🤖 5. Generate Tech Summary with AI\n\n🧠 **Node Name: `Generate Stack Summary (AI)`**\n📋 **What it does:**\nThis is where the magic happens! It uses **OpenAI Chat Model** to analyze and summarize the tech stack for each domain in **clear, readable language**.\n\n🧑💻 Instead of showing raw JSON or tool names, it says:\n\n> *“Nike.com uses Shopify for its storefront, integrates Google Tag Manager for analytics, and uses Klarna for payment processing.”*\n\n📈 You can easily forward this to clients, managers, or teammates.\n\n---\n\n### 📬 6. Email the Summary\n\n📨 **Node Name: `Send Summary Email`**\n📧 **What it does:**\nFinally, this node **sends the generated summaries via Gmail** to a specified email address — or even multiple addresses.\n\n💡 You can customize the subject, recipient list, and message format easily.\n\n---\n\n### ✅ **Summary of Section 3:**\n\nThis section turns complex data into **natural-language insights** and delivers them **automatically** via email. It's like having your own tech intelligence assistant!\n\n---\n\n## 🌟 **What Beginners Can Do with This Workflow**\n\n| 🛠️ Use Case | ✅ Benefit |\n| ----------------------- | ------------------------------------------------- |\n| 🧪 **Tech Analysis** | Learn what tech stacks big ecommerce sites use |\n| 📊 **Client Reporting** | Automatically send insights to stakeholders |\n| 🧠 **AI Integration** | Understand how LLMs can summarize complex data |\n| 🧩 **Automation** | Master scheduling, APIs, and data flows |\n| 💼 **Freelance Growth** | Offer it as a service to marketing or dev clients |\n\n---\n\n## 🌈 **Conclusion:**\n\nThis workflow is a **zero-touch**, **AI-powered automation** for ecommerce tech stack analysis that beginners can adopt, modify, and scale for other industries too!\n\n\n"
},
"typeVersion": 1
}
],
"active": false,
"pinData": {
"Get Tech Stack (BuiltWith API)": [
{
"json": {
"Results": [
{
"Lookup": "webflow.com",
"Result": {
"Paths": [
{
"Url": "http://webflow.com",
"Groups": [
{
"Name": "Web Hosting Providers",
"Tech": [
{
"Name": "Amazon Web Services",
"LastDetected": "2025-06-06",
"FirstDetected": "2022-01-10"
}
]
},
{
"Name": "JavaScript Libraries",
"Tech": [
{
"Name": "React",
"LastDetected": "2025-06-06",
"FirstDetected": "2021-05-01"
},
{
"Name": "jQuery",
"LastDetected": "2024-12-01",
"FirstDetected": "2020-09-15"
}
]
}
]
}
]
}
}
]
}
}
]
},
"settings": {
"executionOrder": "v1"
},
"versionId": "5f270319-ac54-4ce9-9230-c6debfc01927",
"connections": {
"7a9ebaf7-2abf-4e1b-ad9a-bed19adc9bd5": {
"main": [
[
{
"node": "0750f0ed-8dd0-4a67-815a-dbb6c5d0c45d",
"type": "main",
"index": 0
}
]
]
},
"0750f0ed-8dd0-4a67-815a-dbb6c5d0c45d": {
"main": [
[
{
"node": "d5f6b578-a70f-4768-86c8-76dac077c99a",
"type": "main",
"index": 0
}
]
]
},
"609233cd-e8d6-4896-8e63-f065305022e5": {
"ai_languageModel": [
[
{
"node": "7a85fed1-df8e-4fb2-bcf9-aed9fdbf86af",
"type": "ai_languageModel",
"index": 0
}
]
]
},
"94dc7e06-7eae-429a-a7ac-a732452b430f": {
"main": [
[
{
"node": "7a85fed1-df8e-4fb2-bcf9-aed9fdbf86af",
"type": "main",
"index": 0
}
]
]
},
"7a85fed1-df8e-4fb2-bcf9-aed9fdbf86af": {
"main": [
[
{
"node": "3057b031-183a-4f84-be77-0ce53418203b",
"type": "main",
"index": 0
}
]
]
},
"d5f6b578-a70f-4768-86c8-76dac077c99a": {
"main": [
[
{
"node": "94dc7e06-7eae-429a-a7ac-a732452b430f",
"type": "main",
"index": 0
}
]
]
}
}
}よくある質問
このワークフローの使い方は?
上記のJSON設定コードをコピーし、n8nインスタンスで新しいワークフローを作成して「JSONからインポート」を選択、設定を貼り付けて認証情報を必要に応じて変更してください。
このワークフローはどんな場面に適していますか?
中級 - マーケティング
有料ですか?
このワークフローは完全無料です。ただし、ワークフローで使用するサードパーティサービス(OpenAI APIなど)は別途料金が発生する場合があります。
関連ワークフロー
AI YouTube分析アシスタント:コメント分析とインサイトレポート
AI YouTube分析アシスタント:コメント分析ツールとインサイトレポート生成ツール
If
Set
Code
+
If
Set
Code
19 ノードYaron Been
人工知能
自動ニュース要約とメールサマリ(GPT-4、NewsAPI、Gmail)
GPT-4、NewsAPI、Gmail を使用したニュース要約とメールサマリーの自動生成
Gmail
Http Request
Google Sheets
+
Gmail
Http Request
Google Sheets
7 ノードYaron Been
人工知能
GPT-4を使用して、自動のにLinkedInの投稿を生成し、プロフィールとグループに配信する
GPT-4 を使って LinkedIn の投稿を自動生成してプロフィールとグループへ配信する
If
Code
Limit
+
If
Code
Limit
14 ノードYaron Been
人工知能
Phantombuster を使った LinkedIn 投稿の返信アクション自動化
Phantombuster、OpenAI GPT、Google Sheets を使って LinkedIn の自動インタラクションを追跡
Http Request
Google Sheets
Agent
+
Http Request
Google Sheets
Agent
14 ノードYaron Been
人工知能
FireCrawl要約ボット
Firecrawl AI搭載マーケットインテリジェンスロボット:自動ニュースインサイト配送
Code
Slack
Http Request
+
Code
Slack
Http Request
10 ノードYaron Been
人工知能
自動ニュース要約AIエージェントv13
AIニュース制作チーム:24/7リポート自動化+Perplexity引用
Set
Code
Gmail
+
Set
Code
Gmail
37 ノードDerek Cheung
プロダクト
ワークフロー情報
難易度
中級
ノード数12
カテゴリー1
ノードタイプ8
作成者
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で表示 →
このワークフローを共有