자동화된 리드 수집기: Apify에서 Google Sheets로
중급
이것은Sales, AI, Marketing분야의자동화 워크플로우로, 6개의 노드를 포함합니다.주로 Set, Code, HttpRequest, GoogleSheets, ManualTrigger 등의 노드를 사용하며인공지능 기술을 결합하여 스마트 자동화를 구현합니다. Apify에서 Google Sheets로의 데이터 정제를 통한 비즈니스 리드 수집 자동화
사전 요구사항
- •대상 API의 인증 정보가 필요할 수 있음
- •Google Sheets API 인증 정보
워크플로우 미리보기
노드 연결 관계를 시각적으로 표시하며, 확대/축소 및 이동을 지원합니다
워크플로우 내보내기
다음 JSON 구성을 복사하여 n8n에 가져오면 이 워크플로우를 사용할 수 있습니다
{
"id": "8dpOtivR6zGMa8Nf",
"meta": {
"instanceId": "2000c64071c20843606b95c63795bb0797c41036047055a6586498e855b96efc",
"templateCredsSetupCompleted": true
},
"name": "Automated Lead Scraper: Apify to Google Sheets",
"tags": [],
"nodes": [
{
"id": "331e904a-362e-4b18-ac01-60bd138a7ee1",
"name": "수동 트리거",
"type": "n8n-nodes-base.manualTrigger",
"position": [
-1740,
-300
],
"parameters": {},
"typeVersion": 1
},
{
"id": "c8c72d6e-4558-4ab1-9c19-2b8e3cefc856",
"name": "Apify 스크레이퍼 실행",
"type": "n8n-nodes-base.httpRequest",
"position": [
-1280,
-300
],
"parameters": {
"url": "={{ 'https://api.apify.com/v2/actor-tasks/' + $json.APIFY_TASK_ID + '/run-sync-get-dataset-items?token=' +$json.APIFY_TOKEN}}",
"options": {
"splitIntoItems": true
}
},
"typeVersion": 1
},
{
"id": "fb61d5a9-0352-4079-a00f-c42df06bb09e",
"name": "데이터 정제",
"type": "n8n-nodes-base.code",
"position": [
-1080,
-300
],
"parameters": {
"jsCode": "// Clean scraped data before LLM processing\nreturn $input.all().map(item => ({\n ...item.json,\n phone: item.json.phone?.replace(/[^\\d+]/g, '') || '',\n email: item.json.email?.toLowerCase().trim() || ''\n}));"
},
"typeVersion": 2
},
{
"id": "a6988139-87e5-423c-bec9-ce155f617dab",
"name": "Google Sheets로 내보내기",
"type": "n8n-nodes-base.googleSheets",
"position": [
-760,
-300
],
"parameters": {
"columns": {
"value": {
"phone": "={{ $json.phone }}",
"Address": "={{ $json.address }}",
"company name": "={{ $json.title }}"
},
"schema": [
{
"id": "company name",
"type": "string",
"display": true,
"required": false,
"displayName": "company name",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "website",
"type": "string",
"display": true,
"required": false,
"displayName": "website",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "phone",
"type": "string",
"display": true,
"required": false,
"displayName": "phone",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "Address",
"type": "string",
"display": true,
"required": false,
"displayName": "Address",
"defaultMatch": false,
"canBeUsedToMatch": true
}
],
"mappingMode": "defineBelow",
"matchingColumns": [],
"attemptToConvertTypes": false,
"convertFieldsToString": false
},
"options": {},
"operation": "append",
"sheetName": {
"__rl": true,
"mode": "list",
"value": "Sheet1",
"cachedResultUrl": "https://docs.google.com/spreadsheets/d/1UHkd_OuK1Xzc0ZXo7FPrsd5M1JlsIY9pJDC3fsJ3oq8/edit#gid=0",
"cachedResultName": "Sheet1"
},
"documentId": {
"__rl": true,
"mode": "list",
"value": "YOUR_GOOGLE_SHEET_ID",
"cachedResultUrl": "https://docs.google.com/spreadsheets/d/1UHkd_OuK1Xzc0ZXo7FPrsd5M1JlsIY9pJDC3fsJ3oq8/edit?usp=drivesdk",
"cachedResultName": "leas list solar"
}
},
"typeVersion": 4.5
},
{
"id": "f4398fd2-bff0-4e9c-ae1b-f5950be0a384",
"name": "변수",
"type": "n8n-nodes-base.set",
"position": [
-1500,
-300
],
"parameters": {
"options": {},
"assignments": {
"assignments": [
{
"id": "4486360c-2296-41ad-a48f-706e24c49a4f",
"name": "APIFY_TOKEN",
"type": "string",
"value": "YOUR_APIFY_API_TOKEN"
},
{
"id": "6e56b0e3-36ae-4f1e-b0e5-38767bbe8af9",
"name": "APIFY_TASK_ID",
"type": "string",
"value": "YOUR_APIFY_TASK_ID"
}
]
}
},
"typeVersion": 3.4
},
{
"id": "04a980cf-365b-4cc3-8439-fd71cb1f05a3",
"name": "스티키 노트",
"type": "n8n-nodes-base.stickyNote",
"position": [
-1860,
-820
],
"parameters": {
"color": 7,
"width": 1660,
"height": 780,
"content": "## Automated Business Lead Scraper with Apify to Google Sheets\n**Purpose:** Automates scraping business leads using Apify, cleaning the data, and exporting them to Google Sheets.\n\n**Workflow Steps:**\n1. **Manual Trigger**: Starts the workflow manually.\n2. **Set API Credentials**: Add your `APIFY_TOKEN` and `APIFY_TASK_ID`.\n3. **Run Apify Scraper**: Fetches leads using Apify HTTP API.\n4. **Clean Data**: Formats phone numbers and emails.\n5. **Export to Google Sheets**: Appends data to your spreadsheet.\n\n**Google Sheet Requirements:**\n- Sheet name: `Sheet1`\n- Columns: `company name`, `phone`, `Address`\n\n**Customization Tips:**\n- Add more fields like `email`, `website` in Clean Data and mapping.\n- Add conditions or filters before exporting.\n- Add email alerts if needed.\n"
},
"typeVersion": 1
}
],
"active": false,
"pinData": {},
"settings": {
"executionOrder": "v1"
},
"versionId": "47bf9abd-67aa-49c8-81c9-761e75ee731f",
"connections": {
"Start": {
"main": [
[
{
"node": "f4398fd2-bff0-4e9c-ae1b-f5950be0a384",
"type": "main",
"index": 0
}
]
]
},
"f4398fd2-bff0-4e9c-ae1b-f5950be0a384": {
"main": [
[
{
"node": "c8c72d6e-4558-4ab1-9c19-2b8e3cefc856",
"type": "main",
"index": 0
}
]
]
},
"fb61d5a9-0352-4079-a00f-c42df06bb09e": {
"main": [
[
{
"node": "a6988139-87e5-423c-bec9-ce155f617dab",
"type": "main",
"index": 0
}
]
]
},
"c8c72d6e-4558-4ab1-9c19-2b8e3cefc856": {
"main": [
[
{
"node": "fb61d5a9-0352-4079-a00f-c42df06bb09e",
"type": "main",
"index": 0
}
]
]
}
}
}자주 묻는 질문
이 워크플로우를 어떻게 사용하나요?
위의 JSON 구성 코드를 복사하여 n8n 인스턴스에서 새 워크플로우를 생성하고 "JSON에서 가져오기"를 선택한 후, 구성을 붙여넣고 필요에 따라 인증 설정을 수정하세요.
이 워크플로우는 어떤 시나리오에 적합한가요?
중급 - 영업, 인공지능, 마케팅
유료인가요?
이 워크플로우는 완전히 무료이며 직접 가져와 사용할 수 있습니다. 다만, 워크플로우에서 사용하는 타사 서비스(예: OpenAI API)는 사용자 직접 비용을 지불해야 할 수 있습니다.
관련 워크플로우 추천
AI 리드 봇 프로: Google Maps→Slack→HubSpot→$$$
Google 지도, GPT-4, HubSpot를 사용한 자동 잠재 고객 생성 및 자격 평가
If
Set
Code
+
If
Set
Code
16 노드David Olusola
영업
AI 기반 뉴스를 비디오로 변환하는 생성기(Heygen과 GPT4o 사용)
Heygen과 GPT-4o를 사용하여 RSS 뉴스를 AI 가상 인물 비디오로 변환
Set
Code
Wait
+
Set
Code
Wait
18 노드David Olusola
디자인
n8n-vapi 잠재 리드 검증기 최종판 V140525.8
OpenAI, Twilio 및 Vapi를 사용한 잠재 고객 전화 AI 어시스턴트 자동화
If
Set
Code
+
If
Set
Code
26 노드Țugui Dragoș
영업
내 워크플로우 5
AI 이메일 개인화를 사용한 자동화된 LinkedIn 리드 생성 (미완성)
If
Set
Code
+
If
Set
Code
37 노드Matthieu
영업
태양광 잠재 고객 자격 심사
Google Sheets 및 Gmail을 사용한 태양광 잠재 고객 자격 심사 및 후속 조치 자동화
If
Code
Gmail
+
If
Code
Gmail
17 노드David Olusola
영업
OpenAI, Google Sheets, Jina AI 및 Slack을 활용한 AI 기반 정보 모니터링
AI 기반 정보 모니터링 워크플로우로 OpenAI, Google Sheets, Jina AI 및 Slack을 통합합니다
If
Set
Code
+
If
Set
Code
31 노드Dataki
영업
워크플로우 정보
난이도
중급
노드 수6
카테고리3
노드 유형6
저자
David Olusola
@dae221I love building smart, efficient automations with n8n that help businesses save time and scale effortlessly. Turning complex workflows into simple solutions is where I have the most fun
외부 링크
n8n.io에서 보기 →
이 워크플로우 공유