Crunchbase Funding Rounds

Fortgeschritten

Dies ist ein Marketing-Bereich Automatisierungsworkflow mit 8 Nodes. Hauptsächlich werden Code, HttpRequest, GoogleSheets, ScheduleTrigger und andere Nodes verwendet. Automatisierter Finanzierungs-Intelligence-Tracking-Workflow von CrunchBase zu Google Sheets

Voraussetzungen
  • Möglicherweise sind Ziel-API-Anmeldedaten erforderlich
  • Google Sheets API-Anmeldedaten

Kategorie

Workflow-Vorschau
Visualisierung der Node-Verbindungen, mit Zoom und Pan
Workflow exportieren
Kopieren Sie die folgende JSON-Konfiguration und importieren Sie sie in n8n
{
  "id": "guoSdgPOMDBnq6GW",
  "meta": {
    "instanceId": "84ad02d6104594179f43f1ce9cfe3a81637b2faedb57dafcb9e649b7542988db",
    "templateCredsSetupCompleted": true
  },
  "name": "Crunchbase funding rounds",
  "tags": [],
  "nodes": [
    {
      "id": "b2bee19f-4033-4473-a78c-3463b4b56e79",
      "name": "Tägliche Prüfung auf neue Finanzierungsrunden",
      "type": "n8n-nodes-base.scheduleTrigger",
      "position": [
        -100,
        0
      ],
      "parameters": {
        "rule": {
          "interval": [
            {
              "triggerAtHour": 8
            }
          ]
        }
      },
      "typeVersion": 1.2
    },
    {
      "id": "bfeff292-40aa-4a3b-81bf-bd237463abe9",
      "name": "Crunchbase-Finanzierungsrunden abrufen",
      "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": "Finanzierungsdaten extrahieren & formatieren",
      "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": "In Google Sheets protokollieren",
      "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": "Notiz",
      "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": "Notiz1",
      "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": "Notiz9",
      "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": "Notiz4",
      "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
          }
        ]
      ]
    }
  }
}
Häufig gestellte Fragen

Wie verwende ich diesen Workflow?

Kopieren Sie den obigen JSON-Code, erstellen Sie einen neuen Workflow in Ihrer n8n-Instanz und wählen Sie "Aus JSON importieren". Fügen Sie die Konfiguration ein und passen Sie die Anmeldedaten nach Bedarf an.

Für welche Szenarien ist dieser Workflow geeignet?

Fortgeschritten - Marketing

Ist es kostenpflichtig?

Dieser Workflow ist völlig kostenlos. Beachten Sie jedoch, dass Drittanbieterdienste (wie OpenAI API), die im Workflow verwendet werden, möglicherweise kostenpflichtig sind.

Workflow-Informationen
Schwierigkeitsgrad
Fortgeschritten
Anzahl der Nodes8
Kategorie1
Node-Typen5
Schwierigkeitsbeschreibung

Für erfahrene Benutzer, mittelkomplexe Workflows mit 6-15 Nodes

Autor
Yaron Been

Yaron Been

@yaron-nofluff

Building 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

Externe Links
Auf n8n.io ansehen

Diesen Workflow teilen

Kategorien

Kategorien: 34