CrunchBase投资者数据
中级
这是一个Marketing领域的自动化工作流,包含 8 个节点。主要使用 Code, HttpRequest, GoogleSheets, ScheduleTrigger 等节点。 从Crunchbase追踪投资者数据到Google Sheets进行市场分析
前置要求
- •可能需要目标 API 的认证凭证
- •Google Sheets API 凭证
分类
工作流预览
可视化展示节点连接关系,支持缩放和平移
导出工作流
复制以下 JSON 配置到 n8n 导入,即可使用此工作流
{
"id": "8hRFK0iEjVKmthLq",
"meta": {
"instanceId": "84ad02d6104594179f43f1ce9cfe3a81637b2faedb57dafcb9e649b7542988db",
"templateCredsSetupCompleted": true
},
"name": "CrunchBase 投资者数据",
"tags": [],
"nodes": [
{
"id": "49130296-ad2e-43f6-8ec4-7f72161a3a1b",
"name": "每日投资者数据触发器",
"type": "n8n-nodes-base.scheduleTrigger",
"position": [
0,
0
],
"parameters": {
"rule": {
"interval": [
{
"triggerAtHour": 9
}
]
}
},
"typeVersion": 1.2
},
{
"id": "24caa890-abba-435d-a385-18cdef03dfe2",
"name": "获取 Crunchbase 投资者数据",
"type": "n8n-nodes-base.httpRequest",
"position": [
220,
0
],
"parameters": {
"url": "https://api.crunchbase.com/api/v4/searches/organizations",
"method": "POST",
"options": {},
"jsonBody": "{\n \"field_ids\": [\n \"identifier\",\n \"name\",\n \"short_description\",\n \"location_identifiers\",\n \"investment_stage\"\n ],\n \"query\": [\n {\n \"type\": \"predicate\",\n \"field_id\": \"organization_types\",\n \"operator_id\": \"includes\",\n \"values\": [\n \"investor\"\n ]\n }\n ],\n \"limit\": 5\n}",
"sendBody": true,
"sendHeaders": true,
"specifyBody": "json",
"headerParameters": {
"parameters": [
{
"name": "Authorization",
"value": "Bearer YOUR_CRUNCHBASE_API_KEY"
},
{
"name": "Authorization",
"value": "Bearer YOUR_CRUNCHBASE_API_KEY"
}
]
}
},
"typeVersion": 4.2
},
{
"id": "4de0847b-6e11-457d-b04b-d03b4fb1e3c1",
"name": "提取投资者字段",
"type": "n8n-nodes-base.code",
"position": [
540,
0
],
"parameters": {
"jsCode": "const entities = items[0].json.entities;\n\nreturn entities.map(entity => {\n return {\n json: {\n name: entity.name,\n short_description: entity.short_description,\n location_identifiers: entity.location_identifiers,\n investment_stage: entity.investment_stage\n }\n };\n});\n"
},
"typeVersion": 2
},
{
"id": "a7d08f10-1fde-4e99-9127-bf12926d4197",
"name": "追加到投资者表格",
"type": "n8n-nodes-base.googleSheets",
"position": [
780,
0
],
"parameters": {
"columns": {
"value": {
"Name": "={{ $json.name }}",
"Location": "={{ $json.location_identifiers }}",
"Investment Stage": "={{ $json.investment_stage }}",
"Short description": "={{ $json.short_description }}"
},
"schema": [
{
"id": "Name",
"type": "string",
"display": true,
"required": false,
"displayName": "Name",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "Short description",
"type": "string",
"display": true,
"required": false,
"displayName": "Short description",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "Location",
"type": "string",
"display": true,
"required": false,
"displayName": "Location",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "Investment Stage",
"type": "string",
"display": true,
"removed": false,
"required": false,
"displayName": "Investment Stage",
"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/1XOUvOgrhDdOorEj0-TL4EiVygMd1wpD3cktI2_bm-Ww/edit#gid=0",
"cachedResultName": "Sheet1"
},
"documentId": {
"__rl": true,
"mode": "list",
"value": "1XOUvOgrhDdOorEj0-TL4EiVygMd1wpD3cktI2_bm-Ww",
"cachedResultUrl": "https://docs.google.com/spreadsheets/d/1XOUvOgrhDdOorEj0-TL4EiVygMd1wpD3cktI2_bm-Ww/edit?usp=drivesdk",
"cachedResultName": "CrunchBase Invester List"
}
},
"credentials": {
"googleSheetsOAuth2Api": {
"id": "Rp7XiR3hxJfv03ZO",
"name": "Google Sheets account"
}
},
"typeVersion": 4.5
},
{
"id": "45c6eb29-4d24-49a6-b849-938b178b66c9",
"name": "便签",
"type": "n8n-nodes-base.stickyNote",
"position": [
-40,
-1700
],
"parameters": {
"color": 5,
"width": 420,
"height": 1900,
"content": "### 🔷 **第一部分:从 Crunchbase 获取数据**"
},
"typeVersion": 1
},
{
"id": "2dd2de36-770c-4833-884b-1525c1411d46",
"name": "便签1",
"type": "n8n-nodes-base.stickyNote",
"position": [
480,
-1400
],
"parameters": {
"color": 6,
"width": 460,
"height": 1600,
"content": "### 🔷 **第二部分:处理和保存数据**"
},
"typeVersion": 1
},
{
"id": "75231f28-c911-4bdc-a6a2-c6255d293eb3",
"name": "便签 9",
"type": "n8n-nodes-base.stickyNote",
"position": [
-1820,
-1680
],
"parameters": {
"color": 4,
"width": 1300,
"height": 320,
"content": "======================================="
},
"typeVersion": 1
},
{
"id": "c8a8156f-946e-4a50-8789-aff9c66bd9b6",
"name": "便签4",
"type": "n8n-nodes-base.stickyNote",
"position": [
-1820,
-1340
],
"parameters": {
"color": 4,
"width": 1289,
"height": 3278,
"content": "## ✨ n8n 工作流:从 Crunchbase 到 Google 表格的投资者数据自动化"
},
"typeVersion": 1
}
],
"active": false,
"pinData": {
"Fetch Crunchbase Investor Data": [
{
"json": {
"paging": {
"next_page": "cursor_string",
"total_items": 1250,
"current_page": 1
},
"entities": [
{
"name": "Sequoia Capital",
"identifier": {
"uuid": "12345",
"permalink": "sequoia-capital"
},
"investment_stage": [
"early_stage",
"seed"
],
"short_description": "Venture capital firm investing in early-stage companies.",
"location_identifiers": [
"united_states"
]
},
{
"name": "Andreessen Horowitz",
"identifier": {
"uuid": "67890",
"permalink": "andreesen-horowitz"
},
"investment_stage": [
"seed",
"growth_stage"
],
"short_description": "Venture capital firm in Silicon Valley.",
"location_identifiers": [
"united_states"
]
}
]
}
}
]
},
"settings": {
"executionOrder": "v1"
},
"versionId": "daeaf695-d4ae-460d-84b1-b4cdba520d28",
"connections": {
"Extract Investor Fields": {
"main": [
[
{
"node": "Append to Investor Sheet",
"type": "main",
"index": 0
}
]
]
},
"Daily Investor Data Trigger": {
"main": [
[
{
"node": "Fetch Crunchbase Investor Data",
"type": "main",
"index": 0
}
]
]
},
"Fetch Crunchbase Investor Data": {
"main": [
[
{
"node": "Extract Investor Fields",
"type": "main",
"index": 0
}
]
]
}
}
}常见问题
如何使用这个工作流?
复制上方的 JSON 配置代码,在您的 n8n 实例中创建新工作流并选择「从 JSON 导入」,粘贴配置后根据需要修改凭证设置即可。
这个工作流适合什么场景?
中级 - 营销
需要付费吗?
本工作流完全免费,您可以直接导入使用。但请注意,工作流中使用的第三方服务(如 OpenAI API)可能需要您自行付费。
相关工作流推荐
CrunchBase 投资者数据
自动化投资者情报:CrunchBase到Google Sheets数据采集器
Code
Http Request
Google Sheets
+2
8 节点Yaron Been
财务
Crunchbase 融资轮次
从CrunchBase到Google Sheets的自动化融资情报追踪工作流
Code
Http Request
Google Sheets
+2
8 节点Yaron Been
营销
BuiltWith每周摘要
使用BuiltWith、GPT-4o和Gmail的自动化每周技术栈报告
Code
Gmail
Http Request
+5
12 节点Yaron Been
营销
AI YouTube分析助手:评论分析与洞察报告
AI YouTube分析助手:评论分析器与洞察报告生成器
If
Set
Code
+9
19 节点Yaron Been
人工智能
使用 GPT-4 自动生成并分发 LinkedIn 帖子到个人资料和群组
使用 GPT-4 自动生成并分发 LinkedIn 帖子到个人资料和群组
If
Code
Limit
+8
14 节点Yaron Been
人工智能
使用Bright Data和LLMs自动化大规模超个性化外联
通过Bright Data和大语言模型实现大规模超个性化外联自动化
If
Set
Wait
+8
21 节点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 查看 →
分享此工作流