중복 없는 RSS 리더
고급
이것은Market Research, AI Summarization분야의자동화 워크플로우로, 23개의 노드를 포함합니다.주로 If, Set, Html, Filter, Markdown 등의 노드를 사용하며. Gemini AI 요약 및 중복 제거를 통해 Google Sheets로 자동화된 RSS 모니터링
사전 요구사항
- •대상 API의 인증 정보가 필요할 수 있음
- •Google Sheets API 인증 정보
사용된 노드 (23)
워크플로우 미리보기
노드 연결 관계를 시각적으로 표시하며, 확대/축소 및 이동을 지원합니다
워크플로우 내보내기
다음 JSON 구성을 복사하여 n8n에 가져오면 이 워크플로우를 사용할 수 있습니다
{
"id": "4ugQDSCMUWFpn5qo",
"meta": {
"instanceId": "e8794a4f970040d09c64040698c632aefaa9a59e97e60424e4b5671338351753",
"templateCredsSetupCompleted": true
},
"name": "RSS READER WITHOUT DUPLICATES",
"tags": [],
"nodes": [
{
"id": "abe6ed52-40ac-4ed5-abea-419d94505509",
"name": "워크플로우 실행 시",
"type": "n8n-nodes-base.manualTrigger",
"position": [
-3080,
360
],
"parameters": {},
"typeVersion": 1
},
{
"id": "43696041-99ea-4d24-b677-d025bb556544",
"name": "RSS 피드 목록 가져오기",
"type": "n8n-nodes-base.googleSheets",
"notes": "Get feeds Url's from Google Sheet",
"position": [
-2380,
280
],
"parameters": {
"options": {},
"sheetName": {
"__rl": true,
"mode": "url",
"value": "={{ $json[\"Rss Feeds\"] }}"
},
"documentId": {
"__rl": true,
"mode": "url",
"value": "={{ $json.Document }}"
}
},
"credentials": {
"googleSheetsOAuth2Api": {
"id": "yTQwBHgpFHqp2Mxw",
"name": "gSheets roman@ibb.media"
}
},
"notesInFlow": true,
"typeVersion": 4.6
},
{
"id": "02fc9382-dd56-4af0-8c1c-9f3c83461b05",
"name": "RSS 읽기",
"type": "n8n-nodes-base.rssFeedRead",
"notes": "This read RSS channel",
"position": [
-1900,
480
],
"parameters": {
"url": "={{ $json[\"RSS URL\"] }}",
"options": {
"ignoreSSL": true
}
},
"executeOnce": true,
"notesInFlow": true,
"typeVersion": 1.2
},
{
"id": "c39a746a-639e-4d21-9dac-6974bb52a030",
"name": "RSS 요소 반복 처리",
"type": "n8n-nodes-base.splitInBatches",
"position": [
-1340,
-200
],
"parameters": {
"options": {}
},
"typeVersion": 3
},
{
"id": "b7f5ad99-0ea3-45b6-ae0b-07458a4255b3",
"name": "Sheets에서 URL에 대한 행 가져오기",
"type": "n8n-nodes-base.googleSheets",
"notes": "Check if the record with the link exists in Google Sheets",
"position": [
-1120,
-180
],
"parameters": {
"options": {},
"filtersUI": {
"values": [
{
"lookupValue": "={{ $json.link }}",
"lookupColumn": "link"
}
]
},
"sheetName": {
"__rl": true,
"mode": "url",
"value": "={{ $('Settings').item.json[\"Articles Sheet\"] }}"
},
"documentId": {
"__rl": true,
"mode": "url",
"value": "={{ $('Settings').item.json.Document }}"
}
},
"credentials": {
"googleSheetsOAuth2Api": {
"id": "yTQwBHgpFHqp2Mxw",
"name": "gSheets roman@ibb.media"
}
},
"notesInFlow": true,
"typeVersion": 4.6,
"alwaysOutputData": true
},
{
"id": "05c8ff40-8232-4683-950a-37fa60d87eb2",
"name": "HTML을 Markdown으로 변환",
"type": "n8n-nodes-base.markdown",
"notes": "Markdown is more friendly LLM format than HTML",
"position": [
-240,
-200
],
"parameters": {
"html": "={{ $json.data }}",
"options": {
"ignore": "img,form",
"blockElements": ""
}
},
"notesInFlow": true,
"typeVersion": 1
},
{
"id": "6708c44c-e1a5-4f2b-9780-c980c7a95053",
"name": "Google Sheets에 요약 추가",
"type": "n8n-nodes-base.googleSheets",
"position": [
580,
-40
],
"parameters": {
"columns": {
"value": {
"link": "={{ $('Loop Over Rss Elements').item.json.link }}",
"title": "={{ $('Loop Over Rss Elements').item.json.title }}",
"source": "={{ $('Loop Over Rss Elements').item.json[\"RSS NAME\"] }}",
"pubDate": "={{ $('Loop Over Rss Elements').item.json.pubDate.toDateTime().format('yyyy-MM-dd HH:mm').toDateTime() }}",
"ai summary": "={{ $json.text }}",
"categories": "={{ $('Loop Over Rss Elements').item.json.categories.toJsonString() }}"
},
"schema": [
{
"id": "pubDate",
"type": "string",
"display": true,
"required": false,
"displayName": "pubDate",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "source",
"type": "string",
"display": true,
"removed": false,
"required": false,
"displayName": "source",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "title",
"type": "string",
"display": true,
"required": false,
"displayName": "title",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "link",
"type": "string",
"display": true,
"removed": false,
"required": false,
"displayName": "link",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "categories",
"type": "string",
"display": true,
"required": false,
"displayName": "categories",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "ai summary",
"type": "string",
"display": true,
"required": false,
"displayName": "ai summary",
"defaultMatch": false,
"canBeUsedToMatch": true
}
],
"mappingMode": "defineBelow",
"matchingColumns": [
"link"
],
"attemptToConvertTypes": false,
"convertFieldsToString": false
},
"options": {
"useAppend": true,
"cellFormat": "RAW"
},
"operation": "appendOrUpdate",
"sheetName": {
"__rl": true,
"mode": "url",
"value": "={{ $('Settings').item.json[\"Articles Sheet\"] }}"
},
"documentId": {
"__rl": true,
"mode": "url",
"value": "={{ $('Settings').item.json.Document }}"
}
},
"credentials": {
"googleSheetsOAuth2Api": {
"id": "yTQwBHgpFHqp2Mxw",
"name": "gSheets roman@ibb.media"
}
},
"typeVersion": 4.6
},
{
"id": "366e157b-9ff0-4913-b993-7d37c3252fe2",
"name": "RSS와 소스 이름 결합",
"type": "n8n-nodes-base.set",
"position": [
-1660,
480
],
"parameters": {
"options": {},
"assignments": {
"assignments": [
{
"id": "72a6cb17-fefb-44c6-b2d5-348ce57e8270",
"name": "RSS NAME",
"type": "string",
"value": "={{ $('Loop Over Items').item.json[\"RSS NAME\"] }}"
}
]
},
"includeOtherFields": true
},
"typeVersion": 3.4
},
{
"id": "29f5c69a-c6ea-4191-bff5-914044efb76e",
"name": "기사 존재 여부 확인",
"type": "n8n-nodes-base.if",
"notes": "We check if the object is empty",
"position": [
-900,
-180
],
"parameters": {
"options": {},
"conditions": {
"options": {
"version": 2,
"leftValue": "",
"caseSensitive": true,
"typeValidation": "strict"
},
"combinator": "and",
"conditions": [
{
"id": "f2fe5727-5ae3-40fe-86c5-e2ad6288303b",
"operator": {
"type": "object",
"operation": "empty",
"singleValue": true
},
"leftValue": "={{ $item(\"0\").$node[\"Get Row for URL is in Sheets\"].json }}",
"rightValue": ""
}
]
}
},
"notesInFlow": true,
"typeVersion": 2.2
},
{
"id": "a3e91192-55c8-4384-8d2e-fc6cc7321c98",
"name": "콘텐츠 요약",
"type": "@n8n/n8n-nodes-langchain.chainLlm",
"position": [
-20,
-200
],
"parameters": {
"text": "=Hi Gemma Summarize This:\n\n<basic_information>\n- Date: {{ $('Loop Over Rss Elements').item.json.isoDate }}\n- Title: {{ $('Loop Over Rss Elements').item.json.title }}\n- Author/Source: {{ $('Loop Over Rss Elements').item.json.creator }} / {{ $('Loop Over Rss Elements').item.json.link }}\n- Category: {{ $('Loop Over Rss Elements').item.json.categories.toJsonString() }}\n</basic_information>\n\n<content>\n{{ $json.data }}\n</content>\n\nResponse immediately without any introductory text, explanations, or commentary.",
"batching": {},
"messages": {
"messageValues": [
{
"message": "=You Are Gemma.\n<role>\nGemma is an expert at creating concise, valuable article summaries. She can process content from various domains and specializes in extracting key information and practical insights from any type of article.\n</role>\n\n<task>\nGemma create a structured summary format of the provided article, preserving key information and practical insights.\n</task>\n\n<steps>\n- Identify main content of sended by user.\n- Prepare summary, when writing use <writing_guidelines>.\n- Make quality control based on <quality_control>.\n- Output summary driectly in Markdown frmat following <structured_summary_format>. Check <output_formatting> for guidelines.\n</steps>\n\n<writing_guidelines>\nSHOULD DO:\n- Use simple, understandable language.\n- Maintain objectivity and accuracy.\n- Extract practical insights.\n- Emphasize specific data and numbers.\n- Prioritize actionable information.\n- Adjust detail level to article length.\n- Use bullet points for better readability.\n\nSHOULD AVOID:\n- Adding her own opinions beyond the article.\n- Repeating information in different sections.\n- Using jargon without explanation.\n- Omitting important caveats/limitations.\n- Exceeding 300 words in total summary.\n- Copying entire fragments verbatim.\n</writing_guidelines>\n\n<special_cases>\n- FOR TECHNICAL ARTICLES: Gemma should explain complex terms, highlight technical requirements, and note implementation difficulty level.\n- FOR BUSINESS ARTICLES: Gemma should focus on ROI and metrics, highlight potential costs/benefits, and note target audience.\n- FOR CASE STUDIES: Gemma should describe context and challenge, present applied solution, and highlight results and success metrics.\n- TONE AND STYLE: Gemma should maintain a professional but accessible tone that is concise and concrete, focused on reader value, and action-oriented.\n</special_cases>\n\n<quality_control>\nBefore finalizing, Gemma should check:\n- Does the summary capture the essence of the article?\n- Are all sections filled?\n- Is the information accurate and verified?\n- Is the length appropriate?\n- Does the summary have practical value?\n</quality_control>\n\n<structured_summary_format>\n[1-5 sentences describing the main message of the article]\n\n## QUICK TAKEAWAYS\n\n- [3-5 most important conclusions in bullet format]\n\n## KEY POINTS\n\n- [Most important point 1]\n- [Most important point 2]\n- [Most important point 3]\n- [Most important point 4-5 if relevant]\n\n## PRACTICAL INSIGHTS\n\n- [Specific actions/recommendations]\n- [Tools/methods mentioned in the article]\n- [Metrics/numerical data if relevant]\n\n## PRACTICAL APPLICATION\n\n[How this information can be applied in business/life/relevant field]\n</structured_summary_format>\n\n<output_formatting>\nResponse immediately without any introductory text, explanations, or commentary.\nOutput formatting is Markdown.\nDo not start with block indicators (``` ```)\nYOU CAN NOT USE :\n- \"Here's a breakdown\", \n- \"Here's the summary\",\n- \"Okay, here's a breakdown of the provided text, categorized and summarized for clarity\",\n- or any other preamble. Go directly to the structured summary format.\n</output_formatting>"
}
]
},
"promptType": "define"
},
"retryOnFail": true,
"typeVersion": 1.7
},
{
"id": "6edc03ae-3932-4b6d-b8f1-98cb2e51f4cb",
"name": "출력 형식 지정",
"type": "n8n-nodes-base.set",
"position": [
320,
-200
],
"parameters": {
"options": {},
"assignments": {
"assignments": [
{
"id": "52023808-641d-4f4d-9c8f-b51c9b3bbbd1",
"name": "text",
"type": "string",
"value": "={{ $json.text.replace(/<think>[\\s\\S]*?<\\/think>/g, '') }}"
}
]
}
},
"typeVersion": 3.4
},
{
"id": "02eb922d-ae5c-4029-a01a-3a279989fa1c",
"name": "일정 트리거",
"type": "n8n-nodes-base.scheduleTrigger",
"position": [
-3080,
180
],
"parameters": {
"rule": {
"interval": [
{
"field": "hours"
}
]
}
},
"typeVersion": 1.2
},
{
"id": "131b0ae1-bc12-48d8-a20d-bbffbf9b6bee",
"name": "항목 반복 처리",
"type": "n8n-nodes-base.splitInBatches",
"position": [
-2100,
280
],
"parameters": {
"options": {}
},
"typeVersion": 3
},
{
"id": "28c1347b-e54e-405e-ab0a-da6a422187da",
"name": "최근 X 일 필터링",
"type": "n8n-nodes-base.filter",
"notes": "This filter only news from last x days",
"position": [
-1740,
-200
],
"parameters": {
"options": {},
"conditions": {
"options": {
"version": 2,
"leftValue": "",
"caseSensitive": true,
"typeValidation": "strict"
},
"combinator": "and",
"conditions": [
{
"id": "516c4ec9-fc16-4687-a376-86a79115afc8",
"operator": {
"type": "dateTime",
"operation": "after"
},
"leftValue": "={{ $json.pubDate }}",
"rightValue": "={{ $('Settings').item.json['Current Time'].toDateTime().minus($('Settings').item.json['Last X Days'],'days').startOf('day') }}"
}
]
}
},
"notesInFlow": true,
"typeVersion": 2.2
},
{
"id": "852a3623-87a1-4a96-99f4-eb8303ab7c2c",
"name": "설정",
"type": "n8n-nodes-base.set",
"notes": "Set Here Your Gogle Sheets URLs and Last x Days Filter",
"position": [
-2640,
280
],
"parameters": {
"options": {},
"assignments": {
"assignments": [
{
"id": "93e02cc9-f9c9-4167-ad2c-688433aa9b36",
"name": "Document",
"type": "string",
"value": "https://docs.google.com/spreadsheets/d/1i1p_DPymm8QeZrCLxs-Skz8BMSutKpUW4khzpiNBcYc/edit?gid=0#gid=0"
},
{
"id": "c95234c3-baff-4dd6-a3ec-3a97a10e44c1",
"name": "Articles Sheet",
"type": "string",
"value": "https://docs.google.com/spreadsheets/d/1i1p_DPymm8QeZrCLxs-Skz8BMSutKpUW4khzpiNBcYc/edit?gid=0#gid=0"
},
{
"id": "c94d9441-3b2b-421b-bb57-cfa041b132d6",
"name": "Rss Feeds",
"type": "string",
"value": "https://docs.google.com/spreadsheets/d/1i1p_DPymm8QeZrCLxs-Skz8BMSutKpUW4khzpiNBcYc/edit?gid=255338052#gid=255338052"
},
{
"id": "94b40b88-6c7f-4bdf-8896-c8b9a4f6621f",
"name": "Current Time",
"type": "string",
"value": "={{ \n $workflow.trigger === 'Schedule Trigger' ? \n $('Schedule Trigger').item.json.timestamp : \n $now \n}}"
},
{
"id": "eba798d1-5a87-4446-bdc4-63e8a27bc510",
"name": "Last X Days",
"type": "number",
"value": 31
}
]
}
},
"notesInFlow": true,
"typeVersion": 3.4
},
{
"id": "7f3236e0-025d-496e-aacc-c74f15df3ec2",
"name": "LLM 채팅 모델",
"type": "@n8n/n8n-nodes-langchain.lmChatOpenRouter",
"notes": "You can choose other LLM chat model",
"position": [
-60,
-20
],
"parameters": {
"model": "google/gemini-2.5-flash",
"options": {
"temperature": 0.3,
"responseFormat": "text"
}
},
"credentials": {
"openRouterApi": {
"id": "cxxykvBVJ4BwAWb8",
"name": "openrouter nimblio"
}
},
"typeVersion": 1
},
{
"id": "e4b8e1da-e960-4774-8419-0ffce5df9b3f",
"name": "스티커 노트",
"type": "n8n-nodes-base.stickyNote",
"position": [
-2720,
40
],
"parameters": {
"width": 300,
"height": 460,
"content": "## Settings\n\n- Copy this Google Sheet : https://docs.google.com/spreadsheets/d/1i1p_DPymm8QeZrCLxs-Skz8BMSutKpUW4khzpiNBcYc/copy\n- Enter copied URL's in settings\n- Set up time gap for news from RSS"
},
"typeVersion": 1
},
{
"id": "472a0cbb-2b01-48c1-8472-8b0962269a80",
"name": "스티커 노트1",
"type": "n8n-nodes-base.stickyNote",
"position": [
-2220,
220
],
"parameters": {
"width": 1060,
"height": 560,
"content": "## Loop for adding source name to RSS record"
},
"typeVersion": 1
},
{
"id": "94ead111-4efe-459d-9053-3ff7714d5b98",
"name": "워크플로우 종료",
"type": "n8n-nodes-base.noOp",
"position": [
-1120,
-460
],
"parameters": {},
"typeVersion": 1
},
{
"id": "5e470cd5-23c9-4866-a18c-694bf1c021a9",
"name": "웹페이지 HTML 콘텐츠 가져오기",
"type": "n8n-nodes-base.httpRequest",
"position": [
-660,
-200
],
"parameters": {
"url": "={{ $('Loop Over Rss Elements').item.json.link }}",
"options": {
"response": {
"response": {
"responseFormat": "text"
}
}
}
},
"typeVersion": 4.2
},
{
"id": "8bc1cad5-fbbc-43fa-b41f-e668bf9bd8f8",
"name": "HTML에서 본문 콘텐츠 추출",
"type": "n8n-nodes-base.html",
"notes": "We need only body without images",
"position": [
-460,
-200
],
"parameters": {
"options": {
"trimValues": true,
"cleanUpText": true
},
"operation": "extractHtmlContent",
"extractionValues": {
"values": [
{
"key": "data",
"cssSelector": "body",
"returnValue": "html"
}
]
}
},
"typeVersion": 1.2
},
{
"id": "68bb881d-8c0c-4c21-9fab-237bcc42f76e",
"name": "스티커 노트2",
"type": "n8n-nodes-base.stickyNote",
"position": [
-1080,
300
],
"parameters": {
"color": 4,
"width": 760,
"height": 280,
"content": "## Google Sheets Columns\nGoogle Sheet Template: https://docs.google.com/spreadsheets/d/1i1p_DPymm8QeZrCLxs-Skz8BMSutKpUW4khzpiNBcYc/\n### Articles Sheet\n| pubDate | source | title | link | categories | ai summary |\n### RSS FEEDS\n| RSS NAME | RSS URL | \n"
},
"typeVersion": 1
},
{
"id": "396e077e-aba2-4b89-bb0b-7aece91b924b",
"name": "스티커 노트3",
"type": "n8n-nodes-base.stickyNote",
"position": [
-3840,
-540
],
"parameters": {
"width": 700,
"height": 1680,
"content": "# Monitor RSS feeds with AI summaries to Google Sheets\n\n## What this workflow does\n\nThis automation monitors multiple RSS feeds, filters new articles from the last X days, checks for duplicates, and generates AI-powered summaries. It fetches full article content, converts HTML to markdown, and uses Gemini AI to create structured summaries with quick takeaways, key points, and practical insights. All data is automatically saved to Google Sheets.\n\n## How it works\n\n1. **Read RSS feeds** from Google Sheets configuration\n2. **Filter articles** from the last X days (configurable)\n3. **Check for duplicates** by comparing URLs with existing Google Sheets data\n4. **Fetch full content** from article URLs\n5. **Convert HTML to Markdown** for better AI processing\n6. **Generate AI summaries** using Gemini AI with structured format\n7. **Save to Google Sheets** with article details and AI summary\n\n## Quick Setup\n\n1. **Copy the Google Sheet template**: https://docs.google.com/spreadsheets/d/1i1p_DPymm8QeZrCLxs-Skz8BMSutKpUW4khzpiNBcYc/copy\n\n2. **Update Settings node** with your copied Google Sheets URLs:\n - Document URL (main sheet)\n - Articles Sheet URL \n - RSS Feeds Sheet URL\n\n3. **Add your RSS feeds** to the \"RSS FEEDS\" tab in your Google Sheet:\n - RSS NAME (source name)\n - RSS URL (feed URL)\n\n4. **Configure credentials**:\n - Google Sheets OAuth2 API\n - OpenRouter API key for Gemini AI\n\n5. **Adjust time filter** in Settings node (default: last 31 days)\n\n## Google Sheets Structure\n\n### Articles Sheet Columns\n| pubDate | source | title | link | categories | ai summary |\n\n### RSS FEEDS Sheet Columns \n| RSS NAME | RSS URL |\n\n## Customization Options\n\n- **Change AI model**: Replace LLM Chat Model node with different provider\n- **Modify summary format**: Edit the AI prompt in \"Summarize Content\" node\n- **Adjust time filter**: Change \"Last X Days\" value in Settings node\n- **Add more data fields**: Extend Google Sheets columns and mapping\n\n## Scheduling\n\n- **Manual trigger**: Click \"Execute workflow\" button\n- **Automatic**: Runs every hour using Schedule Trigger (configurable)\n"
},
"typeVersion": 1
}
],
"active": false,
"pinData": {},
"settings": {
"executionOrder": "v1"
},
"versionId": "e4722701-47f2-4a88-9492-6405cc67cab8",
"connections": {
"02fc9382-dd56-4af0-8c1c-9f3c83461b05": {
"main": [
[
{
"node": "366e157b-9ff0-4913-b993-7d37c3252fe2",
"type": "main",
"index": 0
}
]
]
},
"852a3623-87a1-4a96-99f4-eb8303ab7c2c": {
"main": [
[
{
"node": "43696041-99ea-4d24-b677-d025bb556544",
"type": "main",
"index": 0
}
]
]
},
"6edc03ae-3932-4b6d-b8f1-98cb2e51f4cb": {
"main": [
[
{
"node": "6708c44c-e1a5-4f2b-9780-c980c7a95053",
"type": "main",
"index": 0
}
]
]
},
"7f3236e0-025d-496e-aacc-c74f15df3ec2": {
"ai_languageModel": [
[
{
"node": "a3e91192-55c8-4384-8d2e-fc6cc7321c98",
"type": "ai_languageModel",
"index": 0
}
]
]
},
"131b0ae1-bc12-48d8-a20d-bbffbf9b6bee": {
"main": [
[
{
"node": "28c1347b-e54e-405e-ab0a-da6a422187da",
"type": "main",
"index": 0
}
],
[
{
"node": "02fc9382-dd56-4af0-8c1c-9f3c83461b05",
"type": "main",
"index": 0
}
]
]
},
"02eb922d-ae5c-4029-a01a-3a279989fa1c": {
"main": [
[
{
"node": "852a3623-87a1-4a96-99f4-eb8303ab7c2c",
"type": "main",
"index": 0
}
]
]
},
"43696041-99ea-4d24-b677-d025bb556544": {
"main": [
[
{
"node": "131b0ae1-bc12-48d8-a20d-bbffbf9b6bee",
"type": "main",
"index": 0
}
]
]
},
"a3e91192-55c8-4384-8d2e-fc6cc7321c98": {
"main": [
[
{
"node": "6edc03ae-3932-4b6d-b8f1-98cb2e51f4cb",
"type": "main",
"index": 0
}
]
]
},
"28c1347b-e54e-405e-ab0a-da6a422187da": {
"main": [
[
{
"node": "c39a746a-639e-4d21-9dac-6974bb52a030",
"type": "main",
"index": 0
}
]
]
},
"c39a746a-639e-4d21-9dac-6974bb52a030": {
"main": [
[
{
"node": "94ead111-4efe-459d-9053-3ff7714d5b98",
"type": "main",
"index": 0
}
],
[
{
"node": "b7f5ad99-0ea3-45b6-ae0b-07458a4255b3",
"type": "main",
"index": 0
}
]
]
},
"29f5c69a-c6ea-4191-bff5-914044efb76e": {
"main": [
[
{
"node": "5e470cd5-23c9-4866-a18c-694bf1c021a9",
"type": "main",
"index": 0
}
],
[
{
"node": "c39a746a-639e-4d21-9dac-6974bb52a030",
"type": "main",
"index": 0
}
]
]
},
"05c8ff40-8232-4683-950a-37fa60d87eb2": {
"main": [
[
{
"node": "a3e91192-55c8-4384-8d2e-fc6cc7321c98",
"type": "main",
"index": 0
}
]
]
},
"5e470cd5-23c9-4866-a18c-694bf1c021a9": {
"main": [
[
{
"node": "8bc1cad5-fbbc-43fa-b41f-e668bf9bd8f8",
"type": "main",
"index": 0
}
]
]
},
"366e157b-9ff0-4913-b993-7d37c3252fe2": {
"main": [
[
{
"node": "131b0ae1-bc12-48d8-a20d-bbffbf9b6bee",
"type": "main",
"index": 0
}
]
]
},
"8bc1cad5-fbbc-43fa-b41f-e668bf9bd8f8": {
"main": [
[
{
"node": "05c8ff40-8232-4683-950a-37fa60d87eb2",
"type": "main",
"index": 0
}
]
]
},
"b7f5ad99-0ea3-45b6-ae0b-07458a4255b3": {
"main": [
[
{
"node": "29f5c69a-c6ea-4191-bff5-914044efb76e",
"type": "main",
"index": 0
}
]
]
},
"6708c44c-e1a5-4f2b-9780-c980c7a95053": {
"main": [
[
{
"node": "c39a746a-639e-4d21-9dac-6974bb52a030",
"type": "main",
"index": 0
}
]
]
},
"abe6ed52-40ac-4ed5-abea-419d94505509": {
"main": [
[
{
"node": "852a3623-87a1-4a96-99f4-eb8303ab7c2c",
"type": "main",
"index": 0
}
]
]
}
}
}자주 묻는 질문
이 워크플로우를 어떻게 사용하나요?
위의 JSON 구성 코드를 복사하여 n8n 인스턴스에서 새 워크플로우를 생성하고 "JSON에서 가져오기"를 선택한 후, 구성을 붙여넣고 필요에 따라 인증 설정을 수정하세요.
이 워크플로우는 어떤 시나리오에 적합한가요?
고급 - 시장 조사, AI 요약
유료인가요?
이 워크플로우는 완전히 무료이며 직접 가져와 사용할 수 있습니다. 다만, 워크플로우에서 사용하는 타사 서비스(예: OpenAI API)는 사용자 직접 비용을 지불해야 할 수 있습니다.
관련 워크플로우 추천
시각화 참조 라이브러리에서 n8n 노드를 탐색
可视化 참조 라이브러리에서 n8n 노드를 탐색
If
Ftp
Set
+
If
Ftp
Set
113 노드I versus AI
기타
리드 생성 및 이메일 워크플로
Google 지도, SendGrid 및 AI를 사용한 B2B 잠재 고객 개발 및 이메일 마케팅 자동화
If
Set
Code
+
If
Set
Code
141 노드Ezema Kingsley Chibuzo
리드 생성
브랜드 보이콧성 검사 - AI 연구소 데모 프로젝트
跨AI검색工具의品牌可见性및情感분석 (OpenAI、Perplexity、ChatGPT)
If
Set
Limit
+
If
Set
Limit
48 노드AOE Agent Lab
시장 조사
커뮤니티 문제 모니터링 및 OpenRouter AI, Reddit, 포럼 크롤링
OpenRouter AI, Reddit, 포럼을 사용하여 커뮤니티 문제를 모니터링합니다.
Set
Code
Html
+
Set
Code
Html
29 노드Julian Kaiser
시장 조사
매일 WhatsApp 그룹 지능형 분석: GPT-4.1 분석 및 음성 메시지 변환
매일 WhatsApp 그룹 지능 분석: GPT-4.1 분석 및 음성 메시지 트랜스크립션
If
Set
Code
+
If
Set
Code
52 노드Daniel Lianes
기타
01 AI 미디어 바이어를 사용한 Facebook 광고 성과 분석 및 Google Sheets로 인사이트 전송
Gemini AI를 사용한 Facebook 광고 분석 및 Google Sheets로 인사이트 전송
If
Set
Code
+
If
Set
Code
34 노드JJ Tham
시장 조사