Crunchbase ファンディングラウンド
中級
これはMarketing分野の自動化ワークフローで、8個のノードを含みます。主にCode, HttpRequest, GoogleSheets, ScheduleTriggerなどのノードを使用。 CrunchBaseからGoogleスプレッドシートへの自動化された資金調達インテリジェンス追跡ワークフロー
前提条件
- •ターゲットAPIの認証情報が必要な場合あり
- •Google Sheets API認証情報
カテゴリー
ワークフロープレビュー
ノード接続関係を可視化、ズームとパンをサポート
ワークフローをエクスポート
以下のJSON設定をn8nにインポートして、このワークフローを使用できます
{
"id": "guoSdgPOMDBnq6GW",
"meta": {
"instanceId": "84ad02d6104594179f43f1ce9cfe3a81637b2faedb57dafcb9e649b7542988db",
"templateCredsSetupCompleted": true
},
"name": "Crunchbase funding rounds",
"tags": [],
"nodes": [
{
"id": "b2bee19f-4033-4473-a78c-3463b4b56e79",
"name": "新規資金調達ラウンドの日次確認",
"type": "n8n-nodes-base.scheduleTrigger",
"position": [
-100,
0
],
"parameters": {
"rule": {
"interval": [
{
"triggerAtHour": 8
}
]
}
},
"typeVersion": 1.2
},
{
"id": "bfeff292-40aa-4a3b-81bf-bd237463abe9",
"name": "Crunchbase資金調達ラウンドの取得",
"type": "n8n-nodes-base.httpRequest",
"position": [
120,
0
],
"parameters": {
"url": "https://api.crunchbase.com/api/v4/entities/funding_rounds",
"options": {},
"sendQuery": true,
"sendHeaders": true,
"queryParameters": {
"parameters": [
{
"name": "locations",
"value": "United States"
},
{
"name": "industry",
"value": "Fintech,Healthtech"
},
{
"name": "sort_order",
"value": "created_at DESC"
},
{
"name": "page",
"value": "1"
},
{
"name": "items_per_page",
"value": "25"
}
]
},
"headerParameters": {
"parameters": [
{
"name": "X-cb-user-key",
"value": "YOUR_API_KEY"
}
]
}
},
"typeVersion": 4.2
},
{
"id": "aaf02cbe-e85d-4575-b570-2758289cbcb9",
"name": "資金調達データの抽出・フォーマット",
"type": "n8n-nodes-base.code",
"position": [
440,
0
],
"parameters": {
"jsCode": "const baseUrl = \"https://www.crunchbase.com/funding-round/\";\n\nconst output = [];\n\nfor (const item of items[0].json.data.entities) {\n const props = item.properties;\n const id = item.identifier;\n\n const companyName = props.funded_organization_identifier?.value || \"N/A\";\n const industry = props.industry_group_identifiers?.map(ind => ind.value).join(\", \") || \"N/A\";\n const fundingType = props.funding_type || \"N/A\";\n const date = props.announced_on || \"N/A\";\n const amount = props.money_raised_usd || 0;\n const investors = props.investor_identifiers?.map(inv => inv.value).join(\", \") || \"N/A\";\n const url = baseUrl + id.permalink;\n\n output.push({\n json: {\n company_name: companyName,\n industry: industry,\n funding_round_type: fundingType,\n announced_date: date,\n money_raised_usd: amount,\n investors: investors,\n crunchbase_url: url\n }\n });\n}\n\nreturn output;\n"
},
"typeVersion": 2
},
{
"id": "a2bd1e77-c88c-4d0f-b66b-1d83cb756831",
"name": "Google Sheetsへの記録",
"type": "n8n-nodes-base.googleSheets",
"position": [
660,
0
],
"parameters": {
"columns": {
"value": {
"industry": "={{ $json.industry }}",
"investors": "={{ $json.investors }}",
"company name": "={{ $json.company_name }}",
"announced date": "={{ $json.announced_date }}",
"crunchbase url": "={{ $json.crunchbase_url }}",
"money raised usd": "={{ $json.money_raised_usd }}",
"funding round type": "={{ $json.funding_round_type }}"
},
"schema": [
{
"id": "company name",
"type": "string",
"display": true,
"required": false,
"displayName": "company name",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "industry",
"type": "string",
"display": true,
"required": false,
"displayName": "industry",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "funding round type",
"type": "string",
"display": true,
"required": false,
"displayName": "funding round type",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "announced date",
"type": "string",
"display": true,
"required": false,
"displayName": "announced date",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "money raised usd",
"type": "string",
"display": true,
"required": false,
"displayName": "money raised usd",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "investors",
"type": "string",
"display": true,
"required": false,
"displayName": "investors",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "crunchbase url",
"type": "string",
"display": true,
"required": false,
"displayName": "crunchbase url",
"defaultMatch": false,
"canBeUsedToMatch": true
}
],
"mappingMode": "defineBelow",
"matchingColumns": [],
"attemptToConvertTypes": false,
"convertFieldsToString": false
},
"options": {},
"operation": "append",
"sheetName": {
"__rl": true,
"mode": "list",
"value": "gid=0",
"cachedResultUrl": "https://docs.google.com/spreadsheets/d/11bGAwfhLtR1FZwEZUAi-pddixpJintqFXAT1eWp_QQ0/edit#gid=0",
"cachedResultName": "Sheet1"
},
"documentId": {
"__rl": true,
"mode": "list",
"value": "11bGAwfhLtR1FZwEZUAi-pddixpJintqFXAT1eWp_QQ0",
"cachedResultUrl": "https://docs.google.com/spreadsheets/d/11bGAwfhLtR1FZwEZUAi-pddixpJintqFXAT1eWp_QQ0/edit?usp=drivesdk",
"cachedResultName": "Crunchbase funding rounds"
}
},
"credentials": {
"googleSheetsOAuth2Api": {
"id": "Rp7XiR3hxJfv03ZO",
"name": "Google Sheets account"
}
},
"typeVersion": 4.5
},
{
"id": "b821dc48-3503-4688-b3f1-3eb9744cb0dc",
"name": "付箋",
"type": "n8n-nodes-base.stickyNote",
"position": [
-160,
-1660
],
"parameters": {
"color": 3,
"width": 440,
"height": 1860,
"content": "## 🔶 **SECTION ONE: Data Fetching & Triggering**\n\n### 🕒 + 🌐 `Daily Check for New Funding Rounds` + `Fetch Crunchbase Funding Rounds`\n\n---\n\n### 1️⃣ 🕒 **Schedule Trigger**\n\n**Node Name:** `Daily Check for New Funding Rounds`\n📌 **Purpose:** This is the **heartbeat** of your workflow. It tells n8n **when** to run the process.\n\n🛠 **How it works:**\n\n* Set to run **daily** (or on weekdays) at a fixed time like 08:00 AM.\n* Uses a native `Cron` schedule — no coding needed.\n\n🎯 **Why it's powerful:**\n\n* Works on autopilot—no manual effort.\n* Keeps your Google Sheet up to date with fresh funding data.\n\n💡 **Pro Tip for Beginners:**\n\n* You can adjust the frequency (e.g., hourly, weekly) from the **Schedule Trigger** node settings in n8n’s UI.\n\n---\n\n### 2️⃣ 🌐 **HTTP Request**\n\n**Node Name:** `Fetch Crunchbase Funding Rounds`\n📌 **Purpose:** This node **pulls fresh funding round data** from Crunchbase via API.\n\n🛠 **How it works:**\n\n* Sends a `GET` request to Crunchbase’s API endpoint.\n* Filters data based on:\n\n * 📍 **Location**: e.g., United States\n * 🏢 **Industries**: e.g., Fintech, Healthtech\n * 📅 Sorted by `created_at DESC` (most recent first)\n\n🔑 **Authentication:**\n\n* Requires a **Crunchbase API key** (`X-cb-user-key`) which is free or paid depending on your plan.\n\n📄 **Data Returned:**\n\n* Company name\n* Funding round type\n* Amount raised\n* Date announced\n* Investors\n* Crunchbase permalink\n\n🎯 **Why it's powerful:**\n\n* Gives you **real-time intelligence** on who’s raising money in your industry.\n* Eliminates the need to visit Crunchbase manually.\n\n💡 **Pro Tip for Beginners:**\n\n* You can customize the API request in this node using query parameters to focus on:\n\n * Only seed or Series A rounds\n * Specific countries\n * Particular timeframes\n\n---\n\n"
},
"typeVersion": 1
},
{
"id": "bf867540-540e-484a-bebc-d2df5d24c273",
"name": "付箋1",
"type": "n8n-nodes-base.stickyNote",
"position": [
360,
-1240
],
"parameters": {
"color": 5,
"width": 460,
"height": 1440,
"content": "## 🔷 **SECTION TWO: Processing & Logging**\n\n### 🧮 + 📄 `Extract & Format Funding Data` + `Log to Google Sheets`\n\n---\n\n### 3️⃣ 🧮 **Function Code**\n\n**Node Name:** `Extract & Format Funding Data`\n📌 **Purpose:** This node **cleans up** the Crunchbase response and **reformats** it into something easy to read and store.\n\n🛠 **How it works:**\n\n* Pulls out only the relevant fields:\n\n * `company_name`\n * `industry`\n * `funding_round_type`\n * `announced_date`\n * `money_raised_usd`\n * `investors`\n * `crunchbase_url`\n* Formats investors as a comma-separated string.\n* Constructs a clickable Crunchbase URL.\n\n🎯 **Why it's powerful:**\n\n* Converts a complex API response into a **clean row of data**.\n* Makes your data Google Sheets–ready.\n\n💡 **Pro Tip for Beginners:**\n\n* You don’t need to write the code! Just copy-paste the provided script.\n* You can even add more fields if needed by editing the Function node.\n\n---\n\n### 4️⃣ 📄 **Google Sheets (Append)**\n\n**Node Name:** `Log to Google Sheets`\n📌 **Purpose:** This final step **writes the funding data** to your connected Google Sheet.\n\n🛠 **How it works:**\n\n* Authenticates via your Google Account.\n* Selects your target spreadsheet and sheet.\n* Automatically appends a **new row** for each funding round found.\n\n"
},
"typeVersion": 1
},
{
"id": "24591384-2b6a-4e7d-9061-62b97a2216b0",
"name": "付箋9",
"type": "n8n-nodes-base.stickyNote",
"position": [
-1720,
-1660
],
"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": "543f43e7-8fc7-4b67-8b75-7948d07a331e",
"name": "付箋4",
"type": "n8n-nodes-base.stickyNote",
"position": [
-1720,
-1320
],
"parameters": {
"color": 4,
"width": 1289,
"height": 3318,
"content": "# 🧩✨ Your Automated Crunchbase Monitoring Workflow (Explained Step-by-Step)\n\nThis workflow helps you **automatically monitor Crunchbase for new funding rounds** in specific industries (like Fintech or Healthtech) and **log that data into Google Sheets** for reporting, trend analysis, or alerting investors.\n\n---\n\n## 🔶 **SECTION ONE: Data Fetching & Triggering**\n\n### 🕒 + 🌐 `Daily Check for New Funding Rounds` + `Fetch Crunchbase Funding Rounds`\n\n---\n\n### 1️⃣ 🕒 **Schedule Trigger**\n\n**Node Name:** `Daily Check for New Funding Rounds`\n📌 **Purpose:** This is the **heartbeat** of your workflow. It tells n8n **when** to run the process.\n\n🛠 **How it works:**\n\n* Set to run **daily** (or on weekdays) at a fixed time like 08:00 AM.\n* Uses a native `Cron` schedule — no coding needed.\n\n🎯 **Why it's powerful:**\n\n* Works on autopilot—no manual effort.\n* Keeps your Google Sheet up to date with fresh funding data.\n\n💡 **Pro Tip for Beginners:**\n\n* You can adjust the frequency (e.g., hourly, weekly) from the **Schedule Trigger** node settings in n8n’s UI.\n\n---\n\n### 2️⃣ 🌐 **HTTP Request**\n\n**Node Name:** `Fetch Crunchbase Funding Rounds`\n📌 **Purpose:** This node **pulls fresh funding round data** from Crunchbase via API.\n\n🛠 **How it works:**\n\n* Sends a `GET` request to Crunchbase’s API endpoint.\n* Filters data based on:\n\n * 📍 **Location**: e.g., United States\n * 🏢 **Industries**: e.g., Fintech, Healthtech\n * 📅 Sorted by `created_at DESC` (most recent first)\n\n🔑 **Authentication:**\n\n* Requires a **Crunchbase API key** (`X-cb-user-key`) which is free or paid depending on your plan.\n\n📄 **Data Returned:**\n\n* Company name\n* Funding round type\n* Amount raised\n* Date announced\n* Investors\n* Crunchbase permalink\n\n🎯 **Why it's powerful:**\n\n* Gives you **real-time intelligence** on who’s raising money in your industry.\n* Eliminates the need to visit Crunchbase manually.\n\n💡 **Pro Tip for Beginners:**\n\n* You can customize the API request in this node using query parameters to focus on:\n\n * Only seed or Series A rounds\n * Specific countries\n * Particular timeframes\n\n---\n\n## 🔷 **SECTION TWO: Processing & Logging**\n\n### 🧮 + 📄 `Extract & Format Funding Data` + `Log to Google Sheets`\n\n---\n\n### 3️⃣ 🧮 **Function Code**\n\n**Node Name:** `Extract & Format Funding Data`\n📌 **Purpose:** This node **cleans up** the Crunchbase response and **reformats** it into something easy to read and store.\n\n🛠 **How it works:**\n\n* Pulls out only the relevant fields:\n\n * `company_name`\n * `industry`\n * `funding_round_type`\n * `announced_date`\n * `money_raised_usd`\n * `investors`\n * `crunchbase_url`\n* Formats investors as a comma-separated string.\n* Constructs a clickable Crunchbase URL.\n\n🎯 **Why it's powerful:**\n\n* Converts a complex API response into a **clean row of data**.\n* Makes your data Google Sheets–ready.\n\n💡 **Pro Tip for Beginners:**\n\n* You don’t need to write the code! Just copy-paste the provided script.\n* You can even add more fields if needed by editing the Function node.\n\n---\n\n### 4️⃣ 📄 **Google Sheets (Append)**\n\n**Node Name:** `Log to Google Sheets`\n📌 **Purpose:** This final step **writes the funding data** to your connected Google Sheet.\n\n🛠 **How it works:**\n\n* Authenticates via your Google Account.\n* Selects your target spreadsheet and sheet.\n* Automatically appends a **new row** for each funding round found.\n\n🎯 **Why it's powerful:**\n\n* Creates a **live funding database** you can filter, share, or analyze.\n* Perfect for:\n\n * Startup scouts\n * VC analysts\n * Market researchers\n\n💡 **Pro Tip for Beginners:**\n\n* You can create graphs and dashboards in Google Sheets based on this data.\n* Add conditional formatting to highlight large funding rounds or specific investors.\n\n---\n\n## ✅ Final Thoughts: Why This Workflow Rocks 💥\n\n* 🧠 **Smart Automation**: Set once, learn daily.\n* 📊 **Investor-Grade Intelligence**: Build a database that rivals paid tools.\n* 🔧 **Customizable**: Change industries, countries, or even add Slack notifications.\n* 🆓 **No Code Needed**: Powered by drag-and-drop logic in n8n.\n\n---\n\n\n"
},
"typeVersion": 1
}
],
"active": false,
"pinData": {
"Fetch Crunchbase Funding Rounds": [
{
"json": {
"data": {
"paging": {
"total_items": 2,
"current_page": 1,
"items_per_page": 25
},
"entities": [
{
"identifier": {
"uuid": "1234-abcd-funding-0001",
"permalink": "fintech-startup-series-a"
},
"properties": {
"announced_on": "2025-06-05",
"funding_type": "series_a",
"investment_stage": "early_stage",
"money_raised_usd": 15000000,
"short_description": "A fintech company revolutionizing small business loans.",
"investor_identifiers": [
{
"uuid": "inv-111",
"value": "Big VC Partners"
}
],
"location_identifiers": [
{
"uuid": "loc-123",
"value": "United States"
}
],
"industry_group_identifiers": [
{
"uuid": "ind-456",
"value": "Fintech"
}
],
"funded_organization_identifier": {
"uuid": "org-uuid-5678",
"value": "Fintech Startup Inc."
}
}
},
{
"identifier": {
"uuid": "5678-wxyz-funding-0002",
"permalink": "healthtech-ai-round"
},
"properties": {
"announced_on": "2025-06-04",
"funding_type": "seed",
"investment_stage": "seed",
"money_raised_usd": 3000000,
"short_description": "AI diagnostics for remote patient care.",
"investor_identifiers": [
{
"uuid": "inv-222",
"value": "Startup Angels"
},
{
"uuid": "inv-333",
"value": "Health VC"
}
],
"location_identifiers": [
{
"uuid": "loc-124",
"value": "United States"
}
],
"industry_group_identifiers": [
{
"uuid": "ind-789",
"value": "Healthtech"
}
],
"funded_organization_identifier": {
"uuid": "org-uuid-9012",
"value": "HealthAI Diagnostics"
}
}
}
]
}
}
}
]
},
"settings": {
"executionOrder": "v1"
},
"versionId": "519faa6a-5105-4743-9661-75b5bf1aade3",
"connections": {
"aaf02cbe-e85d-4575-b570-2758289cbcb9": {
"main": [
[
{
"node": "a2bd1e77-c88c-4d0f-b66b-1d83cb756831",
"type": "main",
"index": 0
}
]
]
},
"bfeff292-40aa-4a3b-81bf-bd237463abe9": {
"main": [
[
{
"node": "aaf02cbe-e85d-4575-b570-2758289cbcb9",
"type": "main",
"index": 0
}
]
]
},
"b2bee19f-4033-4473-a78c-3463b4b56e79": {
"main": [
[
{
"node": "bfeff292-40aa-4a3b-81bf-bd237463abe9",
"type": "main",
"index": 0
}
]
]
}
}
}よくある質問
このワークフローの使い方は?
上記のJSON設定コードをコピーし、n8nインスタンスで新しいワークフローを作成して「JSONからインポート」を選択、設定を貼り付けて認証情報を必要に応じて変更してください。
このワークフローはどんな場面に適していますか?
中級 - マーケティング
有料ですか?
このワークフローは完全無料です。ただし、ワークフローで使用するサードパーティサービス(OpenAI APIなど)は別途料金が発生する場合があります。
関連ワークフロー
CrunchBase投資家データ
投資家インテリジェンスの自動化:CrunchBaseからGoogleシートデータコレクター
Code
Http Request
Google Sheets
+
Code
Http Request
Google Sheets
8 ノードYaron Been
財務
BuiltWithの週次サマリー
BuiltWith・GPT-4o・Google Gmailを使った自動化された週次技術スタックレポート
Code
Gmail
Http Request
+
Code
Gmail
Http Request
12 ノードYaron Been
マーケティング
AI YouTube分析アシスタント:コメント分析とインサイトレポート
AI YouTube分析アシスタント:コメント分析ツールとインサイトレポート生成ツール
If
Set
Code
+
If
Set
Code
19 ノードYaron Been
人工知能
GPT-4を使用して、自動のにLinkedInの投稿を生成し、プロフィールとグループに配信する
GPT-4 を使って LinkedIn の投稿を自動生成してプロフィールとグループへ配信する
If
Code
Limit
+
If
Code
Limit
14 ノードYaron Been
人工知能
大規模超パーソナライズドアウトーチをBright DataとLLMで自動化
Bright Dataと大規模言語モデルを通じた大規模超パーソナライズドアッティングの自動化
If
Set
Wait
+
If
Set
Wait
21 ノードYaron Been
営業
Phantombuster を使った LinkedIn 投稿の返信アクション自動化
Phantombuster、OpenAI GPT、Google Sheets を使って LinkedIn の自動インタラクションを追跡
Http Request
Google Sheets
Agent
+
Http Request
Google Sheets
Agent
14 ノードYaron Been
人工知能
ワークフロー情報
難易度
中級
ノード数8
カテゴリー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で表示 →
このワークフローを共有