Redditアシスタント

上級

これは自動化ワークフローで、31個のノードを含みます。主にSet, Code, Wait, Merge, Filterなどのノードを使用。 F5BotアラートとGPT-5によるReddit返信の自動化とコメントの個別化

前提条件
  • Googleアカウント + Gmail API認証情報
  • Google Sheets API認証情報
  • OpenAI API Key

カテゴリー

-
ワークフロープレビュー
ノード接続関係を可視化、ズームとパンをサポート
ワークフローをエクスポート
以下のJSON設定をn8nにインポートして、このワークフローを使用できます
{
  "id": "GrveDEE7fH9mRpAI",
  "meta": {
    "instanceId": "52254486b159b349334953c1738da94e90477c7604aa8db2062d11afc0120739",
    "templateCredsSetupCompleted": true
  },
  "name": "Reddit Assistant",
  "tags": [
    {
      "id": "ieqEVthNwLDfYSc1",
      "name": "Emp0",
      "createdAt": "2025-05-06T11:04:25.307Z",
      "updatedAt": "2025-05-06T11:04:25.307Z"
    }
  ],
  "nodes": [
    {
      "id": "29031df0-dd8c-4f96-bf92-39f757d73099",
      "name": "Gmailトリガー",
      "type": "n8n-nodes-base.gmailTrigger",
      "position": [
        -2160,
        576
      ],
      "parameters": {
        "simple": false,
        "filters": {
          "sender": "admin@f5bot.com"
        },
        "options": {},
        "pollTimes": {
          "item": [
            {
              "mode": "everyMinute"
            }
          ]
        }
      },
      "credentials": {
        "gmailOAuth2": {
          "id": "2tse7fIyCdDwG3Zm",
          "name": "Gmail"
        }
      },
      "typeVersion": 1.3
    },
    {
      "id": "f7237452-ff16-4c73-8aeb-5efacabb8ba8",
      "name": "フィールド編集",
      "type": "n8n-nodes-base.set",
      "position": [
        -1776,
        576
      ],
      "parameters": {
        "options": {},
        "assignments": {
          "assignments": [
            {
              "id": "f58cb366-4c57-459e-b04c-5265de98f6fd",
              "name": "Text",
              "type": "string",
              "value": "={{ $json.text }}"
            }
          ]
        }
      },
      "typeVersion": 3.4
    },
    {
      "id": "3d214040-c455-4190-a2b7-68162c279ded",
      "name": "投稿を取得",
      "type": "n8n-nodes-base.reddit",
      "position": [
        -1200,
        480
      ],
      "parameters": {
        "postId": "={{ $json.postId }}",
        "operation": "get",
        "subreddit": "={{ $json.subreddit }}"
      },
      "credentials": {
        "redditOAuth2Api": {
          "id": "rIyaOqpm6SelzXHv",
          "name": "Reddit account"
        }
      },
      "typeVersion": 1
    },
    {
      "id": "4986c00a-0ad2-4372-b12d-2969211130c0",
      "name": "マージ",
      "type": "n8n-nodes-base.merge",
      "position": [
        -720,
        336
      ],
      "parameters": {
        "mode": "combine",
        "options": {},
        "combineBy": "combineByPosition"
      },
      "typeVersion": 3.2
    },
    {
      "id": "0f224f38-0887-400b-a395-787c6a119f75",
      "name": "JavaScript1でコード",
      "type": "n8n-nodes-base.code",
      "position": [
        -1408,
        576
      ],
      "parameters": {
        "jsCode": "let posts = [];\nconst input = JSON.stringify($input.first().json.urls);\n\n// Match all encoded Reddit URLs from F5Bot links\nconst regex = /https:\\/\\/f5bot\\.com\\/url\\?u=([^&\\s>]+)/g;\nlet match;\n\nwhile ((match = regex.exec(input)) !== null) {\n  try {\n    const decoded = decodeURIComponent(match[1]);\n    if (decoded.includes(\"reddit.com/r/\")) {\n      const redditMatch = decoded.match(/reddit\\.com\\/r\\/([^/]+)\\/comments\\/([^/]+)/);\n      if (redditMatch) {\n        const subreddit = redditMatch[1];\n        const postId = redditMatch[2];\n        posts.push({ subreddit, postId, url: decoded });\n      }\n    }\n  } catch (e) {}\n}\n\n// remove duplicates\nconst uniquePosts = [];\nconst seen = new Set();\nfor (const p of posts) {\n  if (!seen.has(p.url)) {\n    seen.add(p.url);\n    uniquePosts.push(p);\n  }\n}\n\nreturn { \n  json: uniquePosts[0] \n};\n"
      },
      "typeVersion": 2
    },
    {
      "id": "52b466d0-c09f-48e1-b8ba-7284cdece760",
      "name": "自身の投稿をフィルター",
      "type": "n8n-nodes-base.filter",
      "position": [
        -1056,
        480
      ],
      "parameters": {
        "options": {},
        "conditions": {
          "options": {
            "version": 2,
            "leftValue": "",
            "caseSensitive": true,
            "typeValidation": "strict"
          },
          "combinator": "and",
          "conditions": [
            {
              "id": "33942da9-064a-4bdb-9848-871cdc3c7e75",
              "operator": {
                "type": "string",
                "operation": "notEquals"
              },
              "leftValue": "=Altruistic-Brother37",
              "rightValue": "={{ $json.author }}"
            }
          ]
        }
      },
      "typeVersion": 2.2
    },
    {
      "id": "df891fe9-b3f3-43d2-a462-ada80c72640b",
      "name": "AIエージェント",
      "type": "@n8n/n8n-nodes-langchain.agent",
      "position": [
        -400,
        336
      ],
      "parameters": {
        "text": "=Title: {{ $json.Title }}\nText: {{ $json.Text }}\nsubreddit_rules: {{ JSON.stringify($json.subreddit_rules) }}\nsubreddit: {{ JSON.stringify($json.subreddit_about) }}\nnotes: {{ $json.notes || null }}\n",
        "options": {
          "systemMessage": "=Act as a skilled Reddit indian marketing expert who writes authentic, first-person comments that feel human and community-friendly while tactically promoting a product when rules allow.\n\nTask\nCraft a short Reddit comment reply (max 255 characters) that fits naturally in conversation threads, follows subreddit rules, and—if permitted—casually promotes one product with its link.\nIf promo isn’t allowed, reply with relatable insight or story instead. If links isnt allowed, no need to use links but you must always get a list of products from the Google Sheets Tool\n\nContext\nYou’ll receive:\n- Post_Title and Post_Text → the Reddit post content\n- rules_summary → subreddit rules\n- Access to a Google Sheets Tool containing product, service, content names and URLs of things i make\n\nReasoning\n- Read the post title + text to understand tone and user intent.\n- Check rules_summary for promo policy.\n- If self-promo allowed → pick one product name + link via the Google Sheets Tool.\n- If not allowed → skip product mention and write useful, personal comment.\n- Write in first person; sound casual, experienced, and fast-typing (e.g., “u,” “ur,” “idk”).\n- Avoid buzzwords, fluff, or fake enthusiasm—keep it natural, human, and valuable.\n- Make sure tone matches a senior direct-marketing pro chatting informally.\n\nOutput Format\n- Return only the Reddit comment text (no markdown, no explanation).\n- Keep under 255 characters.\n- Use short, quick sentences.\n- First-person only.\n\nStop Conditions\n✅ Output stops once one valid, rule-compliant Reddit comment is produced.\n✅ Skip promotion if forbidden.\n✅ No external text, tags, or formatting beyond the comment itself.",
          "returnIntermediateSteps": true
        },
        "promptType": "define",
        "hasOutputParser": true
      },
      "typeVersion": 2.2
    },
    {
      "id": "37241eeb-fa26-4dd9-87e9-05624d148bf8",
      "name": "AIへの入力",
      "type": "n8n-nodes-base.set",
      "position": [
        -912,
        480
      ],
      "parameters": {
        "options": {},
        "assignments": {
          "assignments": [
            {
              "id": "1083ab50-5f1c-4f6e-8695-f71578c072c4",
              "name": "Title",
              "type": "string",
              "value": "={{ $json.title }}"
            },
            {
              "id": "84d5cea9-20cd-4f31-acbd-90a7cd9f598e",
              "name": "Text",
              "type": "string",
              "value": "={{ $json.selftext }}"
            }
          ]
        }
      },
      "typeVersion": 3.4
    },
    {
      "id": "b94bfefa-b2af-4e6a-a011-4cc13887dd8f",
      "name": "OpenAIチャットモデル",
      "type": "@n8n/n8n-nodes-langchain.lmChatOpenAi",
      "position": [
        -464,
        608
      ],
      "parameters": {
        "model": {
          "__rl": true,
          "mode": "list",
          "value": "gpt-5-nano",
          "cachedResultName": "gpt-5-nano"
        },
        "options": {}
      },
      "credentials": {
        "openAiApi": {
          "id": "0h6ODbQuIzgmJQq1",
          "name": "OpenAi account 3"
        }
      },
      "typeVersion": 1.2
    },
    {
      "id": "806e4ba5-0de3-46cc-833d-48f9007beea7",
      "name": "投稿にコメントを作成",
      "type": "n8n-nodes-base.reddit",
      "position": [
        144,
        336
      ],
      "parameters": {
        "postId": "={{ $('Get a post').item.json.id }}",
        "resource": "postComment",
        "commentText": "={{ $json.output.comment }}"
      },
      "credentials": {
        "redditOAuth2Api": {
          "id": "rIyaOqpm6SelzXHv",
          "name": "Reddit account"
        }
      },
      "typeVersion": 1
    },
    {
      "id": "11daf05f-5194-4c93-ab5a-f19f15c8c666",
      "name": "構造化出力パーサー",
      "type": "@n8n/n8n-nodes-langchain.outputParserStructured",
      "position": [
        -128,
        608
      ],
      "parameters": {
        "schemaType": "manual",
        "inputSchema": "{\n\t\"type\": \"object\",\n\t\"properties\": {\n\t\t\"comment\": {\n\t\t\t\"type\": \"string\"\n        }\n\t\t\n\t}\n}"
      },
      "typeVersion": 1.3
    },
    {
      "id": "92689bbf-300e-48be-b924-fad10f6efea7",
      "name": "フィールド編集1",
      "type": "n8n-nodes-base.set",
      "position": [
        -912,
        320
      ],
      "parameters": {
        "options": {},
        "assignments": {
          "assignments": [
            {
              "id": "82d428d7-4bd9-4ed8-bcdd-8481c9c2d957",
              "name": "subreddit_about",
              "type": "object",
              "value": "={{ $('Subreddit about').first().json }}"
            },
            {
              "id": "32b21d89-2cec-438f-a4b6-dbf8e5fc4f4e",
              "name": "subreddit_rules",
              "type": "object",
              "value": "={{ $json }}"
            }
          ]
        }
      },
      "typeVersion": 3.4
    },
    {
      "id": "bb820e45-6899-45a4-b8bf-07e4d638ba2e",
      "name": "データセット行を取得時",
      "type": "n8n-nodes-base.evaluationTrigger",
      "position": [
        -2128,
        1600
      ],
      "parameters": {
        "source": "googleSheets",
        "sheetName": {
          "__rl": true,
          "mode": "list",
          "value": 1627839178,
          "cachedResultUrl": "https://docs.google.com/spreadsheets/d/1GYCExj_vkpQi_xtSJDv0EGsKJoPXo8GFf7JerKZpVFg/edit#gid=1627839178",
          "cachedResultName": "reddit evaluations"
        },
        "documentId": {
          "__rl": true,
          "mode": "list",
          "value": "1GYCExj_vkpQi_xtSJDv0EGsKJoPXo8GFf7JerKZpVFg",
          "cachedResultUrl": "https://docs.google.com/spreadsheets/d/1GYCExj_vkpQi_xtSJDv0EGsKJoPXo8GFf7JerKZpVFg/edit?usp=drivesdk",
          "cachedResultName": "Blog Automation"
        }
      },
      "credentials": {
        "googleSheetsOAuth2Api": {
          "id": "dNmdYyKDCj9rTeSw",
          "name": "Gsheet"
        }
      },
      "typeVersion": 4.7
    },
    {
      "id": "bea43dd9-92b4-4811-944d-de8f76a83a90",
      "name": "Googleスプレッドシートを取得",
      "type": "n8n-nodes-base.googleSheetsTool",
      "position": [
        -304,
        608
      ],
      "parameters": {
        "options": {},
        "sheetName": {
          "__rl": true,
          "mode": "list",
          "value": 814034323,
          "cachedResultUrl": "https://docs.google.com/spreadsheets/d/1DbPO7U68-YlOHhb8fIlGu2ImD_N-cm0E-8pwc7qnAo4/edit#gid=814034323",
          "cachedResultName": "promo"
        },
        "documentId": {
          "__rl": true,
          "mode": "list",
          "value": "1DbPO7U68-YlOHhb8fIlGu2ImD_N-cm0E-8pwc7qnAo4",
          "cachedResultUrl": "https://docs.google.com/spreadsheets/d/1DbPO7U68-YlOHhb8fIlGu2ImD_N-cm0E-8pwc7qnAo4/edit?usp=drivesdk",
          "cachedResultName": "Reddit"
        }
      },
      "credentials": {
        "googleSheetsOAuth2Api": {
          "id": "dNmdYyKDCj9rTeSw",
          "name": "Gsheet"
        }
      },
      "typeVersion": 4.7
    },
    {
      "id": "ccfc1730-f266-45cf-ab70-f786c361e96f",
      "name": "テキスト形式を評価",
      "type": "n8n-nodes-base.evaluation",
      "position": [
        304,
        1280
      ],
      "parameters": {
        "metric": "categorization",
        "options": {
          "metricName": "contains dash"
        },
        "operation": "setMetrics",
        "actualAnswer": "={{ $('AI Agent').first().json.output.comment.includes(\"—\") }}",
        "expectedAnswer": "false"
      },
      "typeVersion": 4.8
    },
    {
      "id": "b033365a-04ce-4102-9a13-8f9607ff95fd",
      "name": "テキスト内リンクを評価",
      "type": "n8n-nodes-base.evaluation",
      "position": [
        304,
        1456
      ],
      "parameters": {
        "metric": "categorization",
        "options": {
          "metricName": "contains link"
        },
        "operation": "setMetrics",
        "actualAnswer": "={{ $('AI Agent').first().json.output.comment.includes(\"https://\") }}",
        "expectedAnswer": "true"
      },
      "typeVersion": 4.8
    },
    {
      "id": "a8a89f02-6394-4b55-adf2-d1adf04bcb70",
      "name": "評価シートツール",
      "type": "n8n-nodes-base.evaluation",
      "position": [
        304,
        1632
      ],
      "parameters": {
        "metric": "toolsUsed",
        "options": {
          "metricName": "Tools Used"
        },
        "operation": "setMetrics",
        "expectedTools": "Get Google Sheet",
        "intermediateSteps": "={{ $('AI Agent').first().json.intermediateSteps }}"
      },
      "typeVersion": 4.8
    },
    {
      "id": "1fd1a10c-19e1-4fd2-9ffc-bb9a3a2849e2",
      "name": "評価をマージ",
      "type": "n8n-nodes-base.merge",
      "position": [
        512,
        1296
      ],
      "parameters": {
        "mode": "combine",
        "options": {},
        "combineBy": "combineByPosition",
        "numberInputs": 3
      },
      "typeVersion": 3.2
    },
    {
      "id": "90eb0d88-d9f4-4f7a-8c24-ce73284eebc6",
      "name": "Subredditについて",
      "type": "n8n-nodes-base.reddit",
      "position": [
        -1200,
        320
      ],
      "parameters": {
        "content": "rules",
        "resource": "subreddit",
        "subreddit": "={{ $json.subreddit }}"
      },
      "typeVersion": 1,
      "alwaysOutputData": true
    },
    {
      "id": "68fdc148-1a92-4c55-831d-2985517c66ea",
      "name": "Subredditルール",
      "type": "n8n-nodes-base.reddit",
      "position": [
        -1056,
        320
      ],
      "parameters": {
        "content": "rules",
        "resource": "subreddit",
        "subreddit": "={{ $('Code in JavaScript1').item.json.subreddit }}"
      },
      "typeVersion": 1,
      "alwaysOutputData": true
    },
    {
      "id": "640958ad-76d6-4c32-941f-28e37461d0f8",
      "name": "評価出力を設定",
      "type": "n8n-nodes-base.evaluation",
      "position": [
        688,
        1312
      ],
      "parameters": {
        "source": "googleSheets",
        "outputs": {
          "values": [
            {
              "outputName": "output",
              "outputValue": "={{ $('AI Agent').first().json.output.comment }}"
            },
            {
              "outputName": "contains link",
              "outputValue": "={{ $json[\"contains link\"] }}"
            },
            {
              "outputName": "contains dash",
              "outputValue": "={{ $json[\"contains dash\"] }}"
            },
            {
              "outputName": "Tools Used",
              "outputValue": "={{ $json[\"Tools Used\"] }}"
            }
          ]
        },
        "sheetName": {
          "__rl": true,
          "mode": "list",
          "value": 1627839178,
          "cachedResultUrl": "https://docs.google.com/spreadsheets/d/1GYCExj_vkpQi_xtSJDv0EGsKJoPXo8GFf7JerKZpVFg/edit#gid=1627839178",
          "cachedResultName": "reddit evaluations"
        },
        "documentId": {
          "__rl": true,
          "mode": "list",
          "value": "1GYCExj_vkpQi_xtSJDv0EGsKJoPXo8GFf7JerKZpVFg",
          "cachedResultUrl": "https://docs.google.com/spreadsheets/d/1GYCExj_vkpQi_xtSJDv0EGsKJoPXo8GFf7JerKZpVFg/edit?usp=drivesdk",
          "cachedResultName": "Blog Automation"
        }
      },
      "credentials": {
        "googleSheetsOAuth2Api": {
          "id": "dNmdYyKDCj9rTeSw",
          "name": "Gsheet"
        }
      },
      "typeVersion": 4.8
    },
    {
      "id": "e6583917-e190-4659-a9fb-7c7ab112ccd7",
      "name": "Subreddit URLをフィルター",
      "type": "n8n-nodes-base.code",
      "position": [
        -1600,
        576
      ],
      "parameters": {
        "jsCode": "const text = $json.Text || '';\nconst urls = Array.from(text.matchAll(/https?:\\/\\/[^\\n\\s]+/g)).map(match => match[0]);\nreturn [{ urls }];"
      },
      "typeVersion": 2
    },
    {
      "id": "5b2b514a-2171-4781-a921-ccd36b513848",
      "name": "5分遅延",
      "type": "n8n-nodes-base.wait",
      "position": [
        -1968,
        576
      ],
      "webhookId": "d9738785-7233-424a-a110-38fffe4d801e",
      "parameters": {
        "unit": "minutes"
      },
      "typeVersion": 1.1
    },
    {
      "id": "6a1b82db-9d63-41dd-b3de-022a823258dc",
      "name": "付箋",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -2192,
        64
      ],
      "parameters": {
        "color": 6,
        "width": 928,
        "height": 1104,
        "content": "## Get message from f5 bot\nYou must setup f5bot to send messages to your email with keywords with your niche\nCreate an [f5bot account](https://f5bot.com/)\n\nSetup your keyword niche\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nAdded a delay of 5m because reddit flags automatic messages\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n![email received](https://articles.emp0.com/wp-content/uploads/2025/10/reddit-automation-email-f5bot.png)"
      },
      "typeVersion": 1
    },
    {
      "id": "e4f02e3a-c193-489a-9cd4-3d3eeaf171f1",
      "name": "付箋1",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -2192,
        1216
      ],
      "parameters": {
        "color": 7,
        "width": 3088,
        "height": 576,
        "content": ""
      },
      "typeVersion": 1
    },
    {
      "id": "7e981083-99a7-4322-8299-48ed899529e1",
      "name": "付箋3",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -1248,
        64
      ],
      "parameters": {
        "color": 2,
        "width": 656,
        "height": 1104,
        "content": "## Get data from Reddit\n\nThis includes:\n- Reddit post\n- Subreddit description\n- Subreddit rules\n\nFilter out the user's posts and comments so that we dont reply to our own messages\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n![reddit post](https://articles.emp0.com/wp-content/uploads/2025/10/reddit-automation-get-post.png)"
      },
      "typeVersion": 1
    },
    {
      "id": "b3eb5e4a-ea23-491f-a22b-ab768490cef0",
      "name": "付箋4",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -576,
        64
      ],
      "parameters": {
        "color": 4,
        "width": 624,
        "height": 1104,
        "content": "## Get Product and services\n\nGet a list of your product and services from Google sheets with a list of your products and services that you offer\n\nUse AI agent to reqord your product and services to  attach in your Reddit Response occasionally. It doesnt always promote your links, but it always give relevant replies\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n![Google Sheets](https://articles.emp0.com/wp-content/uploads/2025/10/reddit-automation-gsheet-promo.png)"
      },
      "typeVersion": 1
    },
    {
      "id": "8333f534-2635-4d63-9d33-f5242afc10c3",
      "name": "付箋5",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        64,
        64
      ],
      "parameters": {
        "color": 5,
        "width": 816,
        "height": 1104,
        "content": "## Post on Reddit\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n![Reddit Post](https://articles.emp0.com/wp-content/uploads/2025/10/reddit-automation-reddit-comment.png)"
      },
      "typeVersion": 1
    },
    {
      "id": "84a9f086-a75e-413b-a438-421b3aa04d6d",
      "name": "付箋6",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -1792,
        1248
      ],
      "parameters": {
        "color": 7,
        "width": 864,
        "height": 528,
        "content": "![evaluations](https://articles.emp0.com/wp-content/uploads/2025/10/reddit-automation-evaluations.png)"
      },
      "typeVersion": 1
    },
    {
      "id": "e4e1cc3f-50f1-458a-90be-6eac4acacd42",
      "name": "付箋7",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -2192,
        1248
      ],
      "parameters": {
        "color": 7,
        "width": 400,
        "height": 528,
        "content": "## Evaluations\n\nThis is used to check if the AI is able to create propper reddit messages according to reddit and subreddit rules\nWe check for \n- too much robotic dash - in the message\n- make sure there is a link in the message when allowed\n- ensure the gsheet tool is called upon when necessary\n\nWhile adjusting this flow for your reddit niche\nyou can adjust the prompt and make sure it passes the basic evaluation before setting the workflow to active"
      },
      "typeVersion": 1
    },
    {
      "id": "e68cecb2-b107-4da7-80d8-e3682f16fd5d",
      "name": "付箋2",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -2176,
        192
      ],
      "parameters": {
        "color": 6,
        "width": 512,
        "height": 272,
        "content": "\n![f5bot keywords](https://articles.emp0.com/wp-content/uploads/2025/10/reddit-automation-f5bot-setup.png)"
      },
      "typeVersion": 1
    }
  ],
  "active": true,
  "pinData": {},
  "settings": {
    "callerPolicy": "workflowsFromSameOwner",
    "errorWorkflow": "ernonQOxi07n6WGi",
    "availableInMCP": false,
    "executionOrder": "v1",
    "timeSavedPerExecution": 10
  },
  "versionId": "9cb89aa0-6678-4b81-a4e7-968327f7ad8e",
  "connections": {
    "4986c00a-0ad2-4372-b12d-2969211130c0": {
      "main": [
        [
          {
            "node": "df891fe9-b3f3-43d2-a462-ada80c72640b",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "df891fe9-b3f3-43d2-a462-ada80c72640b": {
      "main": [
        [
          {
            "node": "806e4ba5-0de3-46cc-833d-48f9007beea7",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "5b2b514a-2171-4781-a921-ccd36b513848": {
      "main": [
        [
          {
            "node": "f7237452-ff16-4c73-8aeb-5efacabb8ba8",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "3d214040-c455-4190-a2b7-68162c279ded": {
      "main": [
        [
          {
            "node": "52b466d0-c09f-48e1-b8ba-7284cdece760",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "f7237452-ff16-4c73-8aeb-5efacabb8ba8": {
      "main": [
        [
          {
            "node": "e6583917-e190-4659-a9fb-7c7ab112ccd7",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "92689bbf-300e-48be-b924-fad10f6efea7": {
      "main": [
        [
          {
            "node": "4986c00a-0ad2-4372-b12d-2969211130c0",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "37241eeb-fa26-4dd9-87e9-05624d148bf8": {
      "main": [
        [
          {
            "node": "4986c00a-0ad2-4372-b12d-2969211130c0",
            "type": "main",
            "index": 1
          }
        ]
      ]
    },
    "29031df0-dd8c-4f96-bf92-39f757d73099": {
      "main": [
        [
          {
            "node": "5b2b514a-2171-4781-a921-ccd36b513848",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "90eb0d88-d9f4-4f7a-8c24-ce73284eebc6": {
      "main": [
        [
          {
            "node": "68fdc148-1a92-4c55-831d-2985517c66ea",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "68fdc148-1a92-4c55-831d-2985517c66ea": {
      "main": [
        [
          {
            "node": "92689bbf-300e-48be-b924-fad10f6efea7",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "52b466d0-c09f-48e1-b8ba-7284cdece760": {
      "main": [
        [
          {
            "node": "37241eeb-fa26-4dd9-87e9-05624d148bf8",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "bea43dd9-92b4-4811-944d-de8f76a83a90": {
      "ai_tool": [
        [
          {
            "node": "df891fe9-b3f3-43d2-a462-ada80c72640b",
            "type": "ai_tool",
            "index": 0
          }
        ]
      ]
    },
    "1fd1a10c-19e1-4fd2-9ffc-bb9a3a2849e2": {
      "main": [
        [
          {
            "node": "640958ad-76d6-4c32-941f-28e37461d0f8",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "b94bfefa-b2af-4e6a-a011-4cc13887dd8f": {
      "ai_languageModel": [
        [
          {
            "node": "df891fe9-b3f3-43d2-a462-ada80c72640b",
            "type": "ai_languageModel",
            "index": 0
          }
        ]
      ]
    },
    "0f224f38-0887-400b-a395-787c6a119f75": {
      "main": [
        [
          {
            "node": "90eb0d88-d9f4-4f7a-8c24-ce73284eebc6",
            "type": "main",
            "index": 0
          },
          {
            "node": "3d214040-c455-4190-a2b7-68162c279ded",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "ccfc1730-f266-45cf-ab70-f786c361e96f": {
      "main": [
        [
          {
            "node": "1fd1a10c-19e1-4fd2-9ffc-bb9a3a2849e2",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "b033365a-04ce-4102-9a13-8f9607ff95fd": {
      "main": [
        [
          {
            "node": "1fd1a10c-19e1-4fd2-9ffc-bb9a3a2849e2",
            "type": "main",
            "index": 1
          }
        ]
      ]
    },
    "e6583917-e190-4659-a9fb-7c7ab112ccd7": {
      "main": [
        [
          {
            "node": "0f224f38-0887-400b-a395-787c6a119f75",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "640958ad-76d6-4c32-941f-28e37461d0f8": {
      "main": [
        []
      ]
    },
    "a8a89f02-6394-4b55-adf2-d1adf04bcb70": {
      "main": [
        [
          {
            "node": "1fd1a10c-19e1-4fd2-9ffc-bb9a3a2849e2",
            "type": "main",
            "index": 2
          }
        ]
      ]
    },
    "11daf05f-5194-4c93-ab5a-f19f15c8c666": {
      "ai_outputParser": [
        [
          {
            "node": "df891fe9-b3f3-43d2-a462-ada80c72640b",
            "type": "ai_outputParser",
            "index": 0
          }
        ]
      ]
    },
    "806e4ba5-0de3-46cc-833d-48f9007beea7": {
      "main": [
        [
          {
            "node": "ccfc1730-f266-45cf-ab70-f786c361e96f",
            "type": "main",
            "index": 0
          },
          {
            "node": "b033365a-04ce-4102-9a13-8f9607ff95fd",
            "type": "main",
            "index": 0
          },
          {
            "node": "a8a89f02-6394-4b55-adf2-d1adf04bcb70",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "bb820e45-6899-45a4-b8bf-07e4d638ba2e": {
      "main": [
        [
          {
            "node": "f7237452-ff16-4c73-8aeb-5efacabb8ba8",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  }
}
よくある質問

このワークフローの使い方は?

上記のJSON設定コードをコピーし、n8nインスタンスで新しいワークフローを作成して「JSONからインポート」を選択、設定を貼り付けて認証情報を必要に応じて変更してください。

このワークフローはどんな場面に適していますか?

上級

有料ですか?

このワークフローは完全無料です。ただし、ワークフローで使用するサードパーティサービス(OpenAI APIなど)は別途料金が発生する場合があります。

ワークフロー情報
難易度
上級
ノード数31
カテゴリー-
ノードタイプ14
難易度説明

上級者向け、16ノード以上の複雑なワークフロー

作成者
Jay Emp0

Jay Emp0

@jay-emp0

AI and Automation developer. Im implementing n8n and ai tools to automate marketing and sales in companies

外部リンク
n8n.ioで表示

このワークフローを共有

カテゴリー

カテゴリー: 34