CrunchBase 경쟁자 추적
중급
이것은Finance, Marketing분야의자동화 워크플로우로, 9개의 노드를 포함합니다.주로 Set, Code, ClickUp, HttpRequest, ManualTrigger 등의 노드를 사용하며. CrunchBase 경쟁사 정보 추적기
사전 요구사항
- •대상 API의 인증 정보가 필요할 수 있음
워크플로우 미리보기
노드 연결 관계를 시각적으로 표시하며, 확대/축소 및 이동을 지원합니다
워크플로우 내보내기
다음 JSON 구성을 복사하여 n8n에 가져오면 이 워크플로우를 사용할 수 있습니다
{
"id": "7ITgmmCKTMFGlTYD",
"meta": {
"instanceId": "84ad02d6104594179f43f1ce9cfe3a81637b2faedb57dafcb9e649b7542988db",
"templateCredsSetupCompleted": true
},
"name": "Competitor tracking on CrunchBase",
"tags": [],
"nodes": [
{
"id": "9bed760c-bd66-46b6-b949-08316d073237",
"name": "수동 트리거",
"type": "n8n-nodes-base.manualTrigger",
"position": [
0,
0
],
"parameters": {},
"typeVersion": 1
},
{
"id": "14b8319e-bba0-4b59-9ecb-c3ddb212738d",
"name": "경쟁사 이름 설정",
"type": "n8n-nodes-base.set",
"position": [
220,
0
],
"parameters": {
"options": {},
"assignments": {
"assignments": [
{
"id": "0edc5749-a4da-4148-8ebd-9e21aa9b419e",
"name": "Competitor",
"type": "string",
"value": "OpenAI"
}
]
}
},
"typeVersion": 3.4
},
{
"id": "9dfe1f50-14a8-40b9-a229-0afdf4f84a86",
"name": "Crunchbase 슬러그 생성",
"type": "n8n-nodes-base.code",
"position": [
440,
0
],
"parameters": {
"jsCode": "// Convert \"Competitor\" field into Crunchbase slug format\nreturn items.map(item => {\n const name = item.json.Competitor || \"\";\n\n // Convert to lowercase, remove special chars, replace spaces with dashes\n const slug = name\n .toLowerCase()\n .trim()\n .replace(/[^a-z0-9\\s-]/g, \"\") // Remove non-alphanumeric characters\n .replace(/\\s+/g, \"-\"); // Replace spaces with hyphens\n\n return {\n json: {\n ...item.json,\n slug\n }\n };\n});\n"
},
"typeVersion": 2
},
{
"id": "0c7107f4-1a7a-4a50-a259-b14db106ddd5",
"name": "Crunchbase 데이터 가져오기",
"type": "n8n-nodes-base.httpRequest",
"position": [
740,
0
],
"parameters": {
"url": "=https://api.crunchbase.com/api/v4/entities/organizations/{{ $json.slug }}",
"options": {},
"sendBody": true,
"sendQuery": true,
"bodyParameters": {
"parameters": [
{}
]
},
"queryParameters": {
"parameters": [
{
"name": "user_key",
"value": "YOUR_API_KEY"
}
]
}
},
"typeVersion": 4.2
},
{
"id": "7f98afae-d216-4037-b475-2b37ce65f3c8",
"name": "ClickUp에서 검토 작업 생성",
"type": "n8n-nodes-base.clickUp",
"position": [
980,
0
],
"parameters": {
"name": "Review Crunchbase Update and inform your manager",
"additionalFields": {
"status": "",
"content": "=Company: {{ $json.data.properties.name }}\nLast Updated: {{ $json.data.properties.updated_at }}\nDescription: {{ $json.data.properties.short_description }}\nTotal Funding: {{ $json.data.properties.total_funding_usd }}\nLast Funding: {{ $json.data.properties.last_funding_type }}\nHomepage: {{ $json.data.properties.homepage_url }}",
"dueDate": "",
"priority": 3,
"assignees": []
}
},
"typeVersion": 1
},
{
"id": "24fd0d4e-a329-4c65-9b7c-f6b30dd3b7a2",
"name": "스티커 메모",
"type": "n8n-nodes-base.stickyNote",
"position": [
-40,
-1900
],
"parameters": {
"color": 3,
"width": 640,
"height": 2160,
"content": "## 🔹 **SECTION 1: Input & Preparation 🔧✏️🧠**\n\n### 🧩 Nodes Included:\n\n1. 🔘 **Manual Trigger**\n2. 📝 **Set Competitor Name**\n3. 🧠 **Generate Crunchbase Slug**\n\n---\n\n### 1️⃣ 🔘 **Manual Trigger** — `Manual Trigger`\n\n🚀 **What it does:**\nThis node allows you to **manually run the workflow** during testing or setup. It doesn't trigger automatically on a schedule, but gives you control to click and run whenever you want.\n\n🧰 **Why it's useful:**\nPerfect for **debugging** and **testing**. Instead of waiting for a scheduled run, you can instantly see what the workflow does.\n\n---\n\n### 2️⃣ 📝 **Set Competitor Name** — `Set Competitor Name`\n\n🛠 **What it does:**\nThis node manually defines the company (competitor) you're tracking on Crunchbase.\n\n🔡 **Example input:**\n\n```json\n{\n \"Competitor\": \"Stripe, Inc.\"\n}\n```\n\n💡 **Why it's useful:**\nAllows you to customize which competitor to check — one at a time — while testing. Later, you could replace this with a list from a database or Google Sheet for full automation.\n\n---\n\n### 3️⃣ 🧠 **Generate Crunchbase Slug** — `Generate Crunchbase Slug`\n\n🔄 **What it does:**\nConverts the raw company name into a **Crunchbase-friendly slug** (like a web-safe name) used in the Crunchbase API call.\n\n🔡 **Example:**\n\n* `\"Stripe, Inc.\"` → `\"stripe-inc\"`\n\n🧠 **How it works:**\n\n* Lowercases the text\n* Removes punctuation\n* Replaces spaces with hyphens (`-`)\n\n📌 **Why it's important:**\nCrunchbase’s API requires company slugs in the URL, not full names. This function ensures you get the correct format every time.\n\n---\n\n### ✅ **End of Section 1:**\n\nYou now have a properly formatted `slug` for a company like `openai` or `stripe-inc`, ready to query Crunchbase for real-time data.\n\n---\n\n"
},
"typeVersion": 1
},
{
"id": "47a23c5d-e6ce-4ea2-b2e5-101fd9d02189",
"name": "스티커 메모1",
"type": "n8n-nodes-base.stickyNote",
"position": [
660,
-1560
],
"parameters": {
"color": 5,
"width": 580,
"height": 1820,
"content": "## 🔹 **SECTION 2: Fetch + Create Task 📡🗂**\n\n### 🧩 Nodes Included:\n\n4. 🌐 **Fetch Crunchbase Data**\n5. 📋 **Create Review Task in ClickUp**\n\n---\n\n### 4️⃣ 🌐 **Fetch Crunchbase Data** — `Fetch Crunchbase Data`\n\n🔍 **What it does:**\nMakes a real-time API call to **Crunchbase** using the generated `slug`, and pulls in key information about the company — like funding, description, homepage, and last updated date.\n\n🔑 **Requires:** Crunchbase API Key\n\n🔡 **Example API Call:**\n\n```http\nGET https://api.crunchbase.com/api/v4/entities/organizations/stripe-inc?user_key=YOUR_API_KEY\n```\n\n🧾 **Sample Data Retrieved:**\n\n* `name`: Stripe\n* `updated_at`: 2025-06-05T12:34:56Z\n* `total_funding_usd`: 10B+\n* `homepage_url`: [https://stripe.com](https://stripe.com)\n* `short_description`: Online payment infrastructure\n\n📌 **Why it's useful:**\nThis gives you all the relevant data about the competitor's recent activities that might be worth your team's attention.\n\n---\n\n### 5️⃣ 📋 **Create Review Task in ClickUp** — `Create Review Task in ClickUp`\n\n🗂 **What it does:**\nAutomatically creates a new **task in ClickUp**, assigning the Crunchbase update to your team for review.\n\n📄 **Task Includes:**\n\n* 🏷 Title: `Review Crunchbase Update: Stripe`\n* 📝 Description:\n\n ```text\n Company: Stripe\n Last Updated: 2025-06-05\n Description: Online payment infrastructure\n Total Funding: $10B\n Website: https://stripe.com\n ```\n\n💡 **Why it's powerful:**\nNo manual tracking or checking needed — your team is alerted **automatically** when there’s something new. It ensures nothing slips through the cracks.\n\n---\n\n"
},
"typeVersion": 1
},
{
"id": "60181cc2-f735-4db3-87d0-db0fc89dc336",
"name": "스티커 메모9",
"type": "n8n-nodes-base.stickyNote",
"position": [
-1880,
-1900
],
"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": "8cd558b6-8353-4d9d-af68-7ea02cef2b73",
"name": "스티커 메모4",
"type": "n8n-nodes-base.stickyNote",
"position": [
-1880,
-1560
],
"parameters": {
"color": 4,
"width": 1289,
"height": 3478,
"content": " ✨ **Crunchbase → ClickUp Automation**\n\nTrack competitor updates from **Crunchbase** and automatically create **ClickUp tasks** for your team to review — all in just a few clicks!\n\n---\n\n## 🔹 **SECTION 1: Input & Preparation 🔧✏️🧠**\n\n### 🧩 Nodes Included:\n\n1. 🔘 **Manual Trigger**\n2. 📝 **Set Competitor Name**\n3. 🧠 **Generate Crunchbase Slug**\n\n---\n\n### 1️⃣ 🔘 **Manual Trigger** — `Manual Trigger`\n\n🚀 **What it does:**\nThis node allows you to **manually run the workflow** during testing or setup. It doesn't trigger automatically on a schedule, but gives you control to click and run whenever you want.\n\n🧰 **Why it's useful:**\nPerfect for **debugging** and **testing**. Instead of waiting for a scheduled run, you can instantly see what the workflow does.\n\n---\n\n### 2️⃣ 📝 **Set Competitor Name** — `Set Competitor Name`\n\n🛠 **What it does:**\nThis node manually defines the company (competitor) you're tracking on Crunchbase.\n\n🔡 **Example input:**\n\n```json\n{\n \"Competitor\": \"Stripe, Inc.\"\n}\n```\n\n💡 **Why it's useful:**\nAllows you to customize which competitor to check — one at a time — while testing. Later, you could replace this with a list from a database or Google Sheet for full automation.\n\n---\n\n### 3️⃣ 🧠 **Generate Crunchbase Slug** — `Generate Crunchbase Slug`\n\n🔄 **What it does:**\nConverts the raw company name into a **Crunchbase-friendly slug** (like a web-safe name) used in the Crunchbase API call.\n\n🔡 **Example:**\n\n* `\"Stripe, Inc.\"` → `\"stripe-inc\"`\n\n🧠 **How it works:**\n\n* Lowercases the text\n* Removes punctuation\n* Replaces spaces with hyphens (`-`)\n\n📌 **Why it's important:**\nCrunchbase’s API requires company slugs in the URL, not full names. This function ensures you get the correct format every time.\n\n---\n\n### ✅ **End of Section 1:**\n\nYou now have a properly formatted `slug` for a company like `openai` or `stripe-inc`, ready to query Crunchbase for real-time data.\n\n---\n\n## 🔹 **SECTION 2: Fetch + Create Task 📡🗂**\n\n### 🧩 Nodes Included:\n\n4. 🌐 **Fetch Crunchbase Data**\n5. 📋 **Create Review Task in ClickUp**\n\n---\n\n### 4️⃣ 🌐 **Fetch Crunchbase Data** — `Fetch Crunchbase Data`\n\n🔍 **What it does:**\nMakes a real-time API call to **Crunchbase** using the generated `slug`, and pulls in key information about the company — like funding, description, homepage, and last updated date.\n\n🔑 **Requires:** Crunchbase API Key\n\n🔡 **Example API Call:**\n\n```http\nGET https://api.crunchbase.com/api/v4/entities/organizations/stripe-inc?user_key=YOUR_API_KEY\n```\n\n🧾 **Sample Data Retrieved:**\n\n* `name`: Stripe\n* `updated_at`: 2025-06-05T12:34:56Z\n* `total_funding_usd`: 10B+\n* `homepage_url`: [https://stripe.com](https://stripe.com)\n* `short_description`: Online payment infrastructure\n\n📌 **Why it's useful:**\nThis gives you all the relevant data about the competitor's recent activities that might be worth your team's attention.\n\n---\n\n### 5️⃣ 📋 **Create Review Task in ClickUp** — `Create Review Task in ClickUp`\n\n🗂 **What it does:**\nAutomatically creates a new **task in ClickUp**, assigning the Crunchbase update to your team for review.\n\n📄 **Task Includes:**\n\n* 🏷 Title: `Review Crunchbase Update: Stripe`\n* 📝 Description:\n\n ```text\n Company: Stripe\n Last Updated: 2025-06-05\n Description: Online payment infrastructure\n Total Funding: $10B\n Website: https://stripe.com\n ```\n\n💡 **Why it's powerful:**\nNo manual tracking or checking needed — your team is alerted **automatically** when there’s something new. It ensures nothing slips through the cracks.\n\n---\n\n## 🎯 **Final Outcome**\n\nYou now have a streamlined mini-intelligence system:\n\n* ✅ Input a company\n* 🔁 Convert it into a slug\n* 📡 Fetch live data\n* 📝 Create an action task for your team\n\nAll **automated**, all **within n8n** — no coding required beyond smart node usage. ✨\n\n---\n\n"
},
"typeVersion": 1
}
],
"active": false,
"pinData": {
"Fetch Crunchbase Data": [
{
"json": {
"data": {
"uuid": "abc123",
"properties": {
"name": "OpenAI",
"identifier": {
"uuid": "abc123",
"value": "OpenAI",
"image_id": "v12345",
"permalink": "organization/openai"
},
"updated_at": "2025-06-05T17:32:12Z",
"homepage_url": "https://openai.com",
"last_funding_type": "Series F",
"profile_image_url": "https://example.com/image.jpg",
"short_description": "AI research and deployment company.",
"total_funding_usd": 11300000000,
"num_funding_rounds": 5
}
}
}
}
]
},
"settings": {
"executionOrder": "v1"
},
"versionId": "162f7b36-530f-44a1-92a4-bcd5d20fe0df",
"connections": {
"9bed760c-bd66-46b6-b949-08316d073237": {
"main": [
[
{
"node": "14b8319e-bba0-4b59-9ecb-c3ddb212738d",
"type": "main",
"index": 0
}
]
]
},
"14b8319e-bba0-4b59-9ecb-c3ddb212738d": {
"main": [
[
{
"node": "9dfe1f50-14a8-40b9-a229-0afdf4f84a86",
"type": "main",
"index": 0
}
]
]
},
"0c7107f4-1a7a-4a50-a259-b14db106ddd5": {
"main": [
[
{
"node": "7f98afae-d216-4037-b475-2b37ce65f3c8",
"type": "main",
"index": 0
}
]
]
},
"9dfe1f50-14a8-40b9-a229-0afdf4f84a86": {
"main": [
[
{
"node": "0c7107f4-1a7a-4a50-a259-b14db106ddd5",
"type": "main",
"index": 0
}
]
]
},
"7f98afae-d216-4037-b475-2b37ce65f3c8": {
"main": [
[]
]
}
}
}자주 묻는 질문
이 워크플로우를 어떻게 사용하나요?
위의 JSON 구성 코드를 복사하여 n8n 인스턴스에서 새 워크플로우를 생성하고 "JSON에서 가져오기"를 선택한 후, 구성을 붙여넣고 필요에 따라 인증 설정을 수정하세요.
이 워크플로우는 어떤 시나리오에 적합한가요?
중급 - 금융, 마케팅
유료인가요?
이 워크플로우는 완전히 무료이며 직접 가져와 사용할 수 있습니다. 다만, 워크플로우에서 사용하는 타사 서비스(예: OpenAI API)는 사용자 직접 비용을 지불해야 할 수 있습니다.
관련 워크플로우 추천
CrunchBase 경쟁사 추적
자동 경쟁사 인텔리전스: CrunchBase에서 ClickUp으로의 추적 워크플로
Set
Code
Click Up
+
Set
Code
Click Up
9 노드Yaron Been
마케팅
CrunchBase 투자자 데이터
자동화投资者情报:CrunchBase로Google Sheets데이터采集器
Code
Http Request
Google Sheets
+
Code
Http Request
Google Sheets
8 노드Yaron Been
금융
AI YouTube 분석 어시스턴트: 댓글 분석 및 인사이트 리포트
AI YouTube 분석 어시스턴트: 댓글 분석기 및 인사이트 리포트 생성기
If
Set
Code
+
If
Set
Code
19 노드Yaron Been
인공지능
Bright Data와 LLMs로 대규모 초개인화 아웃리치 자동화
Bright Data 및 대규모 언어 모델을 통한 대규모 초개인화 아웃리치 자동화
If
Set
Wait
+
If
Set
Wait
21 노드Yaron Been
영업
SEO 키워드 모니터링
Apify와 ZeroBounce를 통합한 자동화 YouTube 채널 리드 생성 및 이메일 도달
If
Set
Gmail
+
If
Set
Gmail
16 노드Yaron Been
인공지능
YouTube 채널 지능형 수집기
Google 스프레드시트와 SerpAPI를 사용하여 유튜브 채널 통계 데이터와 연락처 정보를 수집합니다.
Set
Code
Http Request
+
Set
Code
Http Request
15 노드Yaron Been
마케팅
워크플로우 정보
난이도
중급
노드 수9
카테고리2
노드 유형6
저자
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에서 보기 →
이 워크플로우 공유