구조화된 네트워크 데이터에서 매일 통찰 이메일 (Firecrawl 사용)
고급
이것은Marketing분야의자동화 워크플로우로, 16개의 노드를 포함합니다.주로 If, Set, Wait, Gmail, HttpRequest 등의 노드를 사용하며. Firecrawl에서 구조화된 네트워크 데이터를 생성한 매일 통찰력 이메일
사전 요구사항
- •Google 계정 및 Gmail API 인증 정보
- •대상 API의 인증 정보가 필요할 수 있음
- •OpenAI API Key
카테고리
워크플로우 미리보기
노드 연결 관계를 시각적으로 표시하며, 확대/축소 및 이동을 지원합니다
워크플로우 내보내기
다음 JSON 구성을 복사하여 n8n에 가져오면 이 워크플로우를 사용할 수 있습니다
{
"id": "ovPDz1CoTIPih54D",
"meta": {
"instanceId": "1c7b08fed4406d546caf4a44e8b942ca317e7e207bb9a5701955a1a6e1ce1843",
"templateCredsSetupCompleted": true
},
"name": "Daily Insight Email from Structured Web Data with Firecrawl",
"tags": [],
"nodes": [
{
"id": "a1c5c1a4-c61c-48d7-b803-27ffc6484781",
"name": "스케줄 트리거",
"type": "n8n-nodes-base.scheduleTrigger",
"position": [
-240,
-20
],
"parameters": {
"rule": {
"interval": [
{
"triggerAtHour": 10
}
]
}
},
"typeVersion": 1.2
},
{
"id": "654dee5e-2a9a-4164-8e8b-df226b88f065",
"name": "POST 요청",
"type": "n8n-nodes-base.httpRequest",
"position": [
0,
-20
],
"parameters": {
"url": "https://api.firecrawl.dev/v1/extract",
"method": "POST",
"options": {},
"jsonBody": "={\n \"urls\": [\n \"https://www.quiverquant.com/congresstrading/*\"\n ],\n \"prompt\": \"Extract all notable congress member trades over $50,000 USD in the past 1 month. Include the Congress Member's name, party, the Stock/Asset purchased or sold, the Amount of the transaction, and the date of the transaction.\",\n \"schema\": {\n \"type\": \"object\",\n \"properties\": {\n \"notable_trades\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"object\",\n \"properties\": {\n \"congress_member_name\": {\n \"type\": \"string\"\n },\n \"party\": {\n \"type\": \"string\"\n },\n \"stock_or_asset\": {\n \"type\": \"string\"\n },\n \"amount\": {\n \"type\": \"number\"\n },\n \"transaction_date\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"congress_member_name\",\n \"stock_or_asset\",\n \"amount\",\n \"transaction_date\"\n ]\n }\n }\n },\n \"required\": [\n \"notable_trades\"\n ]\n }\n}\n",
"sendBody": true,
"specifyBody": "json",
"authentication": "genericCredentialType",
"genericAuthType": "httpHeaderAuth"
},
"credentials": "[REDACTED]",
"typeVersion": 4.2
},
{
"id": "6e053bbe-21f0-4da8-97b1-47d7432b26e0",
"name": "60초 대기",
"type": "n8n-nodes-base.wait",
"position": [
240,
-20
],
"webhookId": "3ee06ad0-c399-4ad8-9780-9acff83445ab",
"parameters": {
"amount": 60
},
"typeVersion": 1.1
},
{
"id": "354549f4-ff4f-4ca7-a534-ed92fb4a7de7",
"name": "Gmail",
"type": "n8n-nodes-base.gmail",
"position": [
1480,
-20
],
"webhookId": "9a6062c7-7b16-447c-b6ec-5ef4bc441515",
"parameters": {
"sendTo": "[REDACTED]",
"message": "={{ $json.message.content }}",
"options": {},
"subject": "Congress Stock Update",
"emailType": "text"
},
"credentials": "[REDACTED]",
"typeVersion": 2.1
},
{
"id": "008836a9-6fdb-49db-ab6a-13a3cce0200f",
"name": "필드 편집",
"type": "n8n-nodes-base.set",
"position": [
980,
-20
],
"parameters": {
"options": {},
"assignments": {
"assignments": [
{
"id": "05eb0683-67de-4df0-9110-377931d8c7c9",
"name": "data.notable_trades",
"type": "string",
"value": "={{ $json.data.notable_trades }}"
}
]
}
},
"typeVersion": 3.4
},
{
"id": "f6331366-b135-44b3-b541-7b2cc46ab281",
"name": "조건문",
"type": "n8n-nodes-base.if",
"position": [
680,
-20
],
"parameters": {
"options": {},
"conditions": {
"options": {
"version": 2,
"leftValue": "",
"caseSensitive": true,
"typeValidation": "strict"
},
"combinator": "and",
"conditions": [
{
"id": "e58f46d1-80c6-48ec-8838-22dad87cda75",
"operator": {
"type": "array",
"operation": "empty",
"singleValue": true
},
"leftValue": "={{ $json.data.notable_trades }}",
"rightValue": ""
}
]
}
},
"typeVersion": 2.2
},
{
"id": "d5b84c8f-a8e3-42f9-b39e-91fdb54ecf72",
"name": "30초 대기",
"type": "n8n-nodes-base.wait",
"position": [
760,
240
],
"webhookId": "229b06eb-d599-4ee5-8750-c07114c7858c",
"parameters": {
"amount": 30
},
"typeVersion": 1.1
},
{
"id": "c5e41918-7fc2-481a-8d35-a3a835501558",
"name": "HTTP GET 요청",
"type": "n8n-nodes-base.httpRequest",
"position": [
480,
-20
],
"parameters": {
"url": "=https://api.firecrawl.dev/v1/extract/{{ $('POST Request').item.json.id }}",
"options": {},
"authentication": "genericCredentialType",
"genericAuthType": "httpHeaderAuth"
},
"credentials": "[REDACTED]",
"typeVersion": 4.2
},
{
"id": "a0d457fb-d9e7-4090-9a66-cb002a4d6c17",
"name": "포맷팅 AI",
"type": "@n8n/n8n-nodes-langchain.openAi",
"position": [
1120,
-20
],
"parameters": {
"modelId": {
"__rl": true,
"mode": "list",
"value": "gpt-4o",
"cachedResultName": "GPT-4O"
},
"options": {},
"messages": {
"values": [
{
"content": "=Please format these trade date {{ $json.data.notable_trades }} into an easily readable email format."
}
]
}
},
"credentials": "[REDACTED]",
"typeVersion": 1.8
},
{
"id": "0c820795-eea8-4e43-a2fe-5f43241d459f",
"name": "스티키 노트",
"type": "n8n-nodes-base.stickyNote",
"position": [
-300,
-100
],
"parameters": {
"width": 200,
"height": 500,
"content": "Scheduled Trigger"
},
"typeVersion": 1
},
{
"id": "a8b80cd2-ac94-465c-9fa5-ab90f4903229",
"name": "스티키 노트1",
"type": "n8n-nodes-base.stickyNote",
"position": [
-80,
-100
],
"parameters": {
"color": 7,
"height": 500,
"content": "POST Request to Firecrawl"
},
"typeVersion": 1
},
{
"id": "99cf6106-6de3-4b81-8e2f-795927192a06",
"name": "스티키 노트2",
"type": "n8n-nodes-base.stickyNote",
"position": [
180,
-100
],
"parameters": {
"color": 2,
"width": 220,
"height": 500,
"content": "Wait for Extract Request to Complete"
},
"typeVersion": 1
},
{
"id": "6eb2ce69-6db3-471f-9532-10007b233d61",
"name": "스티키 노트3",
"type": "n8n-nodes-base.stickyNote",
"position": [
420,
-100
],
"parameters": {
"color": 3,
"width": 520,
"height": 580,
"content": "GET Request Loop"
},
"typeVersion": 1
},
{
"id": "4f373c54-6d6e-4300-a51d-2f7c30d7f362",
"name": "스티키 노트4",
"type": "n8n-nodes-base.stickyNote",
"position": [
960,
-100
],
"parameters": {
"color": 6,
"width": 460,
"height": 580,
"content": "Formatting Agent"
},
"typeVersion": 1
},
{
"id": "48c2b4b0-9dc6-4b10-949d-dc76371c51a6",
"name": "스티키 노트5",
"type": "n8n-nodes-base.stickyNote",
"position": [
1440,
-100
],
"parameters": {
"color": 4,
"width": 220,
"height": 580,
"content": "Send to Inbox"
},
"typeVersion": 1
},
{
"id": "204d42ff-03f4-4d33-9483-391abfc91858",
"name": "스티키 노트6",
"type": "n8n-nodes-base.stickyNote",
"position": [
-840,
-140
],
"parameters": {
"color": 4,
"width": 500,
"height": 920,
"content": "🔥 Daily Web Scraper & AI Summary with Firecrawl + Email Automation\nNeed to extract and summarize web content from a site that doesn’t have an API? This workflow runs daily to scrape a web page using Firecrawl, summarize the content with OpenAI, and send it directly to your email — fully automated.\n\nWatch Full Video Step-by-step Tutorial Here:\nhttps://www.youtube.com/@Automatewithmarc\n\n🔧 How It Works\nDaily Trigger – Starts the workflow every 24 hours.\n\nFirecrawl Node – Crawls and extracts structured data from any web page you specify.\n\nOpenAI Node (Optional) – Processes and summarizes the raw content using a prompt you control.\n\nGmail Node – Sends the final summary or content snapshot to your email inbox.\n\n✅ Perfect For\nBusiness analysts tracking daily market or industry news\n\nResearchers and founders automating competitive intelligence\n\nAnyone who wants web data delivered without coding or scraping scripts\n\n🪜 Setup Instructions\nFirecrawl API Key – Sign up and insert your key in the credentials.\n\nUpdate Target URL – Edit the URL in the Firecrawl node to your desired site.\n\nCustomize the Prompt – Tailor the OpenAI prompt to extract the insights you want.\n\nConnect Gmail – Add your Gmail credentials and set your recipient email.\n\n🧰 Built With\nFirecrawl (Web scraping without code)\n\nOpenAI (For summarizing and insight extraction)\n\nGmail (Automated notifications)\n\nn8n (Workflow automation engine)\n\n"
},
"typeVersion": 1
}
],
"active": false,
"pinData": {},
"settings": {
"executionOrder": "v1"
},
"versionId": "cb4a0aff-f40c-4db7-a7d1-8ed157c53f25",
"connections": {
"f6331366-b135-44b3-b541-7b2cc46ab281": {
"main": [
[
{
"node": "d5b84c8f-a8e3-42f9-b39e-91fdb54ecf72",
"type": "main",
"index": 0
}
],
[
{
"node": "008836a9-6fdb-49db-ab6a-13a3cce0200f",
"type": "main",
"index": 0
}
]
]
},
"008836a9-6fdb-49db-ab6a-13a3cce0200f": {
"main": [
[
{
"node": "a0d457fb-d9e7-4090-9a66-cb002a4d6c17",
"type": "main",
"index": 0
}
]
]
},
"654dee5e-2a9a-4164-8e8b-df226b88f065": {
"main": [
[
{
"node": "6e053bbe-21f0-4da8-97b1-47d7432b26e0",
"type": "main",
"index": 0
}
]
]
},
"a0d457fb-d9e7-4090-9a66-cb002a4d6c17": {
"main": [
[
{
"node": "354549f4-ff4f-4ca7-a534-ed92fb4a7de7",
"type": "main",
"index": 0
}
]
]
},
"d5b84c8f-a8e3-42f9-b39e-91fdb54ecf72": {
"main": [
[
{
"node": "c5e41918-7fc2-481a-8d35-a3a835501558",
"type": "main",
"index": 0
}
]
]
},
"6e053bbe-21f0-4da8-97b1-47d7432b26e0": {
"main": [
[
{
"node": "c5e41918-7fc2-481a-8d35-a3a835501558",
"type": "main",
"index": 0
}
]
]
},
"c5e41918-7fc2-481a-8d35-a3a835501558": {
"main": [
[
{
"node": "f6331366-b135-44b3-b541-7b2cc46ab281",
"type": "main",
"index": 0
}
]
]
},
"a1c5c1a4-c61c-48d7-b803-27ffc6484781": {
"main": [
[
{
"node": "654dee5e-2a9a-4164-8e8b-df226b88f065",
"type": "main",
"index": 0
}
]
]
}
}
}자주 묻는 질문
이 워크플로우를 어떻게 사용하나요?
위의 JSON 구성 코드를 복사하여 n8n 인스턴스에서 새 워크플로우를 생성하고 "JSON에서 가져오기"를 선택한 후, 구성을 붙여넣고 필요에 따라 인증 설정을 수정하세요.
이 워크플로우는 어떤 시나리오에 적합한가요?
고급 - 마케팅
유료인가요?
이 워크플로우는 완전히 무료이며 직접 가져와 사용할 수 있습니다. 다만, 워크플로우에서 사용하는 타사 서비스(예: OpenAI API)는 사용자 직접 비용을 지불해야 할 수 있습니다.
관련 워크플로우 추천
Veo3 AI 마케팅 대리인
GPT-4, Tavily, Veo 3를 사용하여 트렌드 기반의 비디오 마케팅 크리에이티브 생성
If
Wait
Gmail
+
If
Wait
Gmail
16 노드Automate With Marc
인공지능
Firecrawl 추출 - Quiver Q
🏛️ Firecrawl + OpenAI + Gmail을 사용하여 미국 의회의원 주식 거래 일일 보고서 생성
If
Set
Code
+
If
Set
Code
19 노드Automate With Marc
기타
GPT-4o, WordPress, LinkedIn을 사용한 RSS 콘텐츠 자동 블로그 게시
GPT-4o, WordPress 및 LinkedIn을 사용한 RSS 콘텐츠 블로그 게시물 자동 발행
If
Set
Code
+
If
Set
Code
40 노드Immanuel
인공지능
AI, ElevenLabs, 다중 플랫폼을 사용하여 POV 비디오를 생성하고 승인
AI, ElevenLabs, 및 다중 플랫폼에서 POV 비디오를 생성하고 승인하기 (TikTok/IG/YT)
If
Set
Code
+
If
Set
Code
60 노드Immanuel
디자인
MailChimp자동화
基于AI의餐厅通讯생성기,통합Mailchimp및Telegram审批
If
Set
Code
+
If
Set
Code
43 노드Femi Ad
인공지능
AI 자동화 TikTok/Youtube 숏폼/릴스 생성기
AI 기반 숏폼 비디오 생성기, OpenAI, Flux, Kling, ElevenLabs 통합
If
Set
Code
+
If
Set
Code
41 노드Cameron Wills
인공지능
워크플로우 정보
난이도
고급
노드 수16
카테고리1
노드 유형8
저자
Automate With Marc
@marconiAutomating Start-Up and Business processes. Helping non-techies understand and leverage Agentic AI with easy to understand step-by-step tutorials. Check out my educational content: https://www.youtube.com/@Automatewithmarc
외부 링크
n8n.io에서 보기 →
이 워크플로우 공유