AutomationFlowsAI & RAG › Startup Founder Discovery and Ai-powered Outreach with Crunchbase and Gmail

Startup Founder Discovery and Ai-powered Outreach with Crunchbase and Gmail

ByYaron Been @yaron-nofluff on n8n.io

This cutting-edge n8n automation is a sophisticated founder intelligence and outreach tool designed to transform startup research into actionable networking opportunities. By intelligently connecting CrunchBase, OpenAI, and Gmail, this workflow: Discovers Startup Founders:…

Event trigger★★★★☆ complexityAI-powered13 nodesOutput Parser StructuredOpenAI ChatHTTP RequestAgentGmail
AI & RAG Trigger: Event Nodes: 13 Complexity: ★★★★☆ AI nodes: yes Added:

This workflow corresponds to n8n.io template #4729 — we link there as the canonical source.

This workflow follows the Agent → Gmail recipe pattern — see all workflows that pair these two integrations.

The workflow JSON

Copy or download the full n8n JSON below. Paste it into a new n8n workflow, add your credentials, activate. Full import guide →

Download .json
{
  "id": "yNl6TycBIVr4r9Ef",
  "meta": {
    "templateCredsSetupCompleted": true
  },
  "name": "Cruchbase email outreach",
  "tags": [],
  "nodes": [
    {
      "id": "4a5a04cc-062d-4822-b690-61d072bf1e88",
      "name": "Structured Output Parser",
      "type": "@n8n/n8n-nodes-langchain.outputParserStructured",
      "position": [
        1220,
        220
      ],
      "parameters": {
        "jsonSchemaExample": "{\n  \"subject\": \"\ud83d\ude80 Startup Founder Highlights for Outreach - June 6, 2025\",\n  \"body\": \"\ud83d\ude80 Here's a summary of promising startup founders for potential outreach:\\n\\n\ud83d\udd39 **Jane Doe**\\nCo-Founder & CEO at Acme AI. She is a serial entrepreneur with over 10 years of experience in AI and SaaS startups. Educated at Stanford University with an MBA. You can find her on LinkedIn: https://www.linkedin.com/in/janedoe.\\n\\n\ud83d\udd39 **John Smith**\\nCTO at GreenLoop. Passionate about sustainable packaging innovation and technology leadership. Holds a Bachelor\u2019s degree in Environmental Engineering from MIT. Connect on LinkedIn: https://www.linkedin.com/in/johnsmith.\"\n}\n"
      },
      "typeVersion": 1.2
    },
    {
      "id": "05aaede3-213d-43f3-b42f-c1c7188c6b3b",
      "name": "OpenAI Chat Model",
      "type": "@n8n/n8n-nodes-langchain.lmChatOpenAi",
      "position": [
        1000,
        220
      ],
      "parameters": {
        "model": {
          "__rl": true,
          "mode": "list",
          "value": "gpt-4o-mini"
        },
        "options": {}
      },
      "credentials": {
        "openAiApi": {
          "name": "<your credential>"
        }
      },
      "typeVersion": 1.2
    },
    {
      "id": "02c283da-ace1-41f0-a298-ac89882b0c1d",
      "name": "Updated profiles List",
      "type": "n8n-nodes-base.httpRequest",
      "position": [
        220,
        0
      ],
      "parameters": {
        "url": "https://api.crunchbase.com/api/v4/relationships/organizations/1234abcd-5678-efgh-ijkl-9012mnop3456/people",
        "options": {},
        "sendQuery": true,
        "sendHeaders": true,
        "queryParameters": {
          "parameters": [
            {
              "name": "page",
              "value": "1"
            }
          ]
        },
        "headerParameters": {
          "parameters": [
            {
              "name": "X-Cb-User-Key",
              "value": "YOUR_API_KEY_HERE"
            }
          ]
        }
      },
      "typeVersion": 4.2
    },
    {
      "id": "3f0723a9-73eb-43be-834b-bc2a8c5d9c50",
      "name": "Founder Profiles by UUID",
      "type": "n8n-nodes-base.httpRequest",
      "position": [
        500,
        0
      ],
      "parameters": {
        "url": "=https://api.crunchbase.com/api/v4/entities/people/{{ $json.data.items[0].uuid }}",
        "options": {},
        "sendHeaders": true,
        "headerParameters": {
          "parameters": [
            {
              "name": "X-Cb-User-Key",
              "value": "YOUR_API_KEY_HERE"
            }
          ]
        }
      },
      "typeVersion": 4.2
    },
    {
      "id": "25dcbcc9-5155-4d61-b4b7-ce5e9646b56e",
      "name": "Extract Key Profile Fields",
      "type": "n8n-nodes-base.set",
      "position": [
        720,
        0
      ],
      "parameters": {
        "options": {},
        "assignments": {
          "assignments": [
            {
              "id": "eeff9c2c-fe9f-4f6c-a030-99ff87308529",
              "name": "Full name",
              "type": "string",
              "value": "={{ $json.data.properties.full_name }}"
            },
            {
              "id": "1ba5a408-31b3-409e-a7bf-95f708b0374a",
              "name": "Title",
              "type": "string",
              "value": "={{ $json.data.properties.title }}"
            },
            {
              "id": "c8344897-be61-47cd-b7fd-3d932644ad07",
              "name": "biography",
              "type": "string",
              "value": "={{ $json.data.properties.biography }}"
            },
            {
              "id": "28ee7b7a-1d5d-46fd-aa35-b9e767626ba3",
              "name": "Education",
              "type": "string",
              "value": "={{ $json.data.properties.education }}"
            },
            {
              "id": "10271203-a0c9-4b16-b88e-4999e210bf03",
              "name": "Social Links",
              "type": "string",
              "value": "={{ $json.data.properties.social_links }}"
            },
            {
              "id": "6144bd09-cbf4-4c27-800b-3b0552c0f5ca",
              "name": "Associated companies",
              "type": "string",
              "value": "={{ $json.data.properties.associated_companies }}"
            }
          ]
        }
      },
      "typeVersion": 3.4
    },
    {
      "id": "8734c81e-515f-481f-aa1e-70ef7bd4ddab",
      "name": "Summarizer Agent",
      "type": "@n8n/n8n-nodes-langchain.agent",
      "position": [
        1020,
        0
      ],
      "parameters": {
        "text": "=Full name: {{ $json['Full name'] }}\nTitle: {{ $json.Title }}\nbiography: {{ $json.biography }}\nEducation: {{ $json.Education }}\nSocial Links: {{ $json['Social Links'] }}\nAssociated companies: {{ $json['Associated companies'] }}\n",
        "options": {
          "systemMessage": "You are an expert at writing concise, professional summaries for business email outreach. Given detailed information about a person\u2019s professional profile, your task is to generate a short summary focusing only on the most relevant information for outreach emails.\n\nOnly include:\n- Full name\n- Current title/role\n- Brief, relevant part of the biography (max 1-2 sentences)\n- Key education highlights (school and degree)\n- Social links (only LinkedIn or Twitter if available)\n- Most relevant associated company (name and role)\n\nDo NOT include unnecessary details. Make the summary clear, engaging, and suitable for a personalized outreach email introduction."
        },
        "promptType": "define",
        "hasOutputParser": true
      },
      "typeVersion": 1.9
    },
    {
      "id": "738f7615-bc05-4335-8a93-d4025c8cf885",
      "name": "Send email for outreach",
      "type": "n8n-nodes-base.gmail",
      "position": [
        1380,
        0
      ],
      "parameters": {
        "sendTo": "user@example.com",
        "message": "={{ $json.output.body }}",
        "options": {
          "appendAttribution": false
        },
        "subject": "=CrunchBase profile for outreach"
      },
      "credentials": {
        "gmailOAuth2": {
          "name": "<your credential>"
        }
      },
      "typeVersion": 2.1
    },
    {
      "id": "d359f26d-fe8d-4d34-a96c-42b176b946a1",
      "name": "When clicking \u2018Test workflow\u2019",
      "type": "n8n-nodes-base.manualTrigger",
      "position": [
        0,
        0
      ],
      "parameters": {},
      "typeVersion": 1
    },
    {
      "id": "3529f772-cb46-4145-ba2e-f115dce37db4",
      "name": "Sticky Note",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -40,
        -1040
      ],
      "parameters": {
        "color": 7,
        "width": 420,
        "height": 1220,
        "content": "## \ud83d\udd01 **SECTION 1: Trigger + Company Fetching**\n\n**\ud83e\uddf1 Nodes:**\n\n* \ud83d\udd18 **Manual Trigger**\n* \ud83c\udf10 **HTTP Request \u2013 Fetch: Updated Companies List**\n\n---\n\n### \ud83d\ude80 What This Section Does\n\n\ud83d\udd18 **Manual Trigger**\nThis allows you to manually run the automation anytime you want. Perfect for testing or when you only want to fetch founder data on demand (instead of a scheduled time).\n\n\ud83c\udf10 **HTTP Request \u2013 Fetch: Updated Companies List**\nThis node connects to the **Crunchbase API** to get a list of the latest startups or companies that have been updated recently.\n\n#### \ud83d\udd27 What You Can Customize\n\n\ud83d\udee0\ufe0f **Page Query**:\nIn the URL or query parameters, you'll find something like `page=1`.\n\u27a1\ufe0f You can manually change this to `page=2`, `page=3`, etc., to explore other sets of companies.\n\n\ud83d\udee0\ufe0f **Date Filter**:\nThe `updated_since` parameter can also be changed to look for startups updated within a certain time window.\n\n---\n\n"
      },
      "typeVersion": 1
    },
    {
      "id": "c10bafbe-3d3b-4cce-b8a0-5d725a98ffb7",
      "name": "Sticky Note1",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        440,
        -1160
      ],
      "parameters": {
        "color": 3,
        "width": 440,
        "height": 1340,
        "content": "## \ud83d\udc64 **SECTION 2: Founder Profile Fetching + Field Mapping**\n\n**\ud83e\uddf1 Nodes:**\n\n* \ud83c\udf10 **HTTP Request \u2013 Fetch: Founder Profiles by UUID**\n* \u270f\ufe0f **Edit Fields \u2013 Extract Key Profile Data**\n\n---\n\n### \ud83d\udd0e What This Section Does\n\n\ud83c\udf10 **HTTP Request \u2013 Fetch: Founder Profiles by UUID**\nFor each company fetched in Section 1, this node pulls the **detailed profile** of one person (typically a founder, CEO, or C-level executive).\n\n\u270f\ufe0f **Edit Fields \u2013 Extract Key Profile Data**\nThis step takes the raw profile data and selects only the fields we care about:\n\u2705 Full Name,\n\u2705 Title,\n\u2705 Biography,\n\u2705 Education,\n\u2705 Social Links,\n\u2705 Associated Companies\n\n#### \ud83d\udd27 What You Can Customize\n\n\ud83d\udd22 **Person Indexing**:\nIn this node\u2019s configuration, you can find the list of people associated with a company.\n\u27a1\ufe0f To switch from Founder #1 to Founder #2, change the **item number** or **array index** \u2014 for example, from `[0]` to `[1]`.\n\n\ud83d\udca1 This is useful when a company has **multiple co-founders** or key executives you may want to evaluate separately.\n\n---\n\n"
      },
      "typeVersion": 1
    },
    {
      "id": "e8c27235-f214-444e-8b1a-5e445e65e0af",
      "name": "Sticky Note2",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        940,
        -640
      ],
      "parameters": {
        "color": 6,
        "width": 580,
        "height": 1020,
        "content": "## \ud83e\udd16\ud83d\udce8 **SECTION 3: AI-Powered Summary + Email Outreach**\n\n**\ud83e\uddf1 Nodes:**\n\n* \ud83e\udd16 **AI Agent \u2013 Generate Email Summary**\n* \ud83d\udce7 **Gmail \u2013 Send Founder Digest**\n\n---\n\n### \ud83e\udde0 What This Section Does\n\n\ud83e\udd16 **AI Agent \u2013 Generate Email Summary**\nThis uses **OpenAI\u2019s GPT model** with a **Structured Output Parser** to turn the extracted profile into a polished, professional email-ready summary.\nIt's trained to output:\n\n> Jane Doe is currently Co-Founder & CEO at Acme AI. She is a serial entrepreneur with 10+ years in AI and SaaS. Educated at Stanford (MBA). Connect on LinkedIn: [https://linkedin.com/in/janedoe](https://linkedin.com/in/janedoe)\n\n\ud83d\udce7 **Gmail \u2013 Send Founder Digest**\nFinally, this node **sends the email** \u2014 which could go to your team, your CRM, or even directly to your inbox \u2014 with a subject like:\n\n> \ud83d\ude80 Startup Founder Highlights for Outreach - June 6, 2025\n\n"
      },
      "typeVersion": 1
    },
    {
      "id": "fd781b49-45c0-4006-bb22-7d82ff3f4e31",
      "name": "Sticky Note9",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -1580,
        -1040
      ],
      "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": "9b478bcf-5ba5-4edf-91a6-61e3fffa1078",
      "name": "Sticky Note4",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -1580,
        -700
      ],
      "parameters": {
        "color": 4,
        "width": 1289,
        "height": 2558,
        "content": "## \ud83d\udd01 **SECTION 1: Trigger + Company Fetching**\n\n**\ud83e\uddf1 Nodes:**\n\n* \ud83d\udd18 **Manual Trigger**\n* \ud83c\udf10 **HTTP Request \u2013 Fetch: Updated Companies List**\n\n---\n\n### \ud83d\ude80 What This Section Does\n\n\ud83d\udd18 **Manual Trigger**\nThis allows you to manually run the automation anytime you want. Perfect for testing or when you only want to fetch founder data on demand (instead of a scheduled time).\n\n\ud83c\udf10 **HTTP Request \u2013 Fetch: Updated Companies List**\nThis node connects to the **Crunchbase API** to get a list of the latest startups or companies that have been updated recently.\n\n#### \ud83d\udd27 What You Can Customize\n\n\ud83d\udee0\ufe0f **Page Query**:\nIn the URL or query parameters, you'll find something like `page=1`.\n\u27a1\ufe0f You can manually change this to `page=2`, `page=3`, etc., to explore other sets of companies.\n\n\ud83d\udee0\ufe0f **Date Filter**:\nThe `updated_since` parameter can also be changed to look for startups updated within a certain time window.\n\n---\n\n## \ud83d\udc64 **SECTION 2: Founder Profile Fetching + Field Mapping**\n\n**\ud83e\uddf1 Nodes:**\n\n* \ud83c\udf10 **HTTP Request \u2013 Fetch: Founder Profiles by UUID**\n* \u270f\ufe0f **Edit Fields \u2013 Extract Key Profile Data**\n\n---\n\n### \ud83d\udd0e What This Section Does\n\n\ud83c\udf10 **HTTP Request \u2013 Fetch: Founder Profiles by UUID**\nFor each company fetched in Section 1, this node pulls the **detailed profile** of one person (typically a founder, CEO, or C-level executive).\n\n\u270f\ufe0f **Edit Fields \u2013 Extract Key Profile Data**\nThis step takes the raw profile data and selects only the fields we care about:\n\u2705 Full Name,\n\u2705 Title,\n\u2705 Biography,\n\u2705 Education,\n\u2705 Social Links,\n\u2705 Associated Companies\n\n#### \ud83d\udd27 What You Can Customize\n\n\ud83d\udd22 **Person Indexing**:\nIn this node\u2019s configuration, you can find the list of people associated with a company.\n\u27a1\ufe0f To switch from Founder #1 to Founder #2, change the **item number** or **array index** \u2014 for example, from `[0]` to `[1]`.\n\n\ud83d\udca1 This is useful when a company has **multiple co-founders** or key executives you may want to evaluate separately.\n\n---\n\n## \ud83e\udd16\ud83d\udce8 **SECTION 3: AI-Powered Summary + Email Outreach**\n\n**\ud83e\uddf1 Nodes:**\n\n* \ud83e\udd16 **AI Agent \u2013 Generate Email Summary**\n* \ud83d\udce7 **Gmail \u2013 Send Founder Digest**\n\n---\n\n### \ud83e\udde0 What This Section Does\n\n\ud83e\udd16 **AI Agent \u2013 Generate Email Summary**\nThis uses **OpenAI\u2019s GPT model** with a **Structured Output Parser** to turn the extracted profile into a polished, professional email-ready summary.\nIt's trained to output:\n\n> Jane Doe is currently Co-Founder & CEO at Acme AI. She is a serial entrepreneur with 10+ years in AI and SaaS. Educated at Stanford (MBA). Connect on LinkedIn: [https://linkedin.com/in/janedoe](https://linkedin.com/in/janedoe)\n\n\ud83d\udce7 **Gmail \u2013 Send Founder Digest**\nFinally, this node **sends the email** \u2014 which could go to your team, your CRM, or even directly to your inbox \u2014 with a subject like:\n\n> \ud83d\ude80 Startup Founder Highlights for Outreach - June 6, 2025\n\n#### \ud83d\udee0\ufe0f What You Can Customize\n\n* \u270d\ufe0f Change the **recipient** to your sales or outreach inbox\n* \ud83d\udd8b\ufe0f Modify the **subject line** to match your brand or campaign\n* \ud83d\udcec Send to **multiple emails** using a comma-separated list\n\n---\n\n## \u2705 Final Thoughts: How You Can Use This\n\nThis workflow is perfect for:\n\n* \ud83d\ude80 Startup Scouts\n* \ud83d\udcec Cold Outreach Campaigns\n* \ud83e\udde0 VC Analysts or Tech Researchers\n* \ud83e\udde9 Enriching founder data in your CRM\n\n\ud83d\udca5 **No more copy-pasting Crunchbase profiles manually!**\nJust trigger the workflow, skim the summaries, and reach out.\n\n---\n\n"
      },
      "typeVersion": 1
    }
  ],
  "active": false,
  "settings": {
    "executionOrder": "v1"
  },
  "versionId": "ddab3a6c-8291-44bb-87bb-9085d4ce845a",
  "connections": {
    "Summarizer Agent": {
      "main": [
        [
          {
            "node": "Send email for outreach",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "OpenAI Chat Model": {
      "ai_languageModel": [
        [
          {
            "node": "Summarizer Agent",
            "type": "ai_languageModel",
            "index": 0
          }
        ]
      ]
    },
    "Updated profiles List": {
      "main": [
        [
          {
            "node": "Founder Profiles by UUID",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Founder Profiles by UUID": {
      "main": [
        [
          {
            "node": "Extract Key Profile Fields",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Structured Output Parser": {
      "ai_outputParser": [
        [
          {
            "node": "Summarizer Agent",
            "type": "ai_outputParser",
            "index": 0
          }
        ]
      ]
    },
    "Extract Key Profile Fields": {
      "main": [
        [
          {
            "node": "Summarizer Agent",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "When clicking \u2018Test workflow\u2019": {
      "main": [
        [
          {
            "node": "Updated profiles List",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  }
}

Credentials you'll need

Each integration node will prompt for credentials when you import. We strip credential IDs before publishing — you'll add your own.

Pro

For the full experience including quality scoring and batch install features for each workflow upgrade to Pro

About this workflow

This cutting-edge n8n automation is a sophisticated founder intelligence and outreach tool designed to transform startup research into actionable networking opportunities. By intelligently connecting CrunchBase, OpenAI, and Gmail, this workflow: Discovers Startup Founders:…

Source: https://n8n.io/workflows/4729/ — original creator credit. Request a take-down →

More AI & RAG workflows → · Browse all categories →

Related workflows

Workflows that share integrations, category, or trigger type with this one. All free to copy and import.

AI & RAG

Typeform IA - YT. Uses typeformTrigger, agent, lmChatOpenAi, toolWorkflow. Event-driven trigger; 75 nodes.

Typeform Trigger, Agent, OpenAI Chat +7
AI & RAG

Transcript Evalu8r V2 is a robust browser-based transcript analysis tool powered by Deepgram’s speech-to-text API and built into an n8n workflow template. This release introduces full in-browser audio

Google Drive Trigger, HTTP Request, Agent +5
AI & RAG

Transcript Evalu8r is an AI-powered transcript analysis workflow that automates the processing, visualization, and evaluation of transcribed conversations. This n8n workflow template is designed to he

Google Drive Trigger, HTTP Request, Agent +5
AI & RAG

Generate personalized sales leads, ready-to-send, HTML-formatted emails, and send them automatically. This workflow is ideal for sales professionals, marketers, and business development teams aiming t

HTTP Request, Agent, Output Parser Structured +4
AI & RAG

This workflow automates end-to-end contract and invoice management using AI intelligence. It processes proposals through intelligent contract generation, approval workflows, and automated invoicing. O

Form Trigger, Data Table, Agent +4