{"workflow":{"id":13154,"name":"Moderate user content and route governance decisions with Claude and APIs","views":7,"recentViews":0,"totalViews":7,"createdAt":"2026-02-01T15:23:04.733Z","description":"## How It Works\nThis workflow automates intelligent content moderation and governance enforcement through multi-model AI validation. Designed for social media platforms, online communities, and user-generated content platforms, it solves the critical challenge of scaling content review while maintaining consistent policy enforcement and human oversight for edge cases. The system receives content submissions via webhook, processing them through a dual-agent AI framework for content validation and governance orchestration. It employs specialized AI models for policy violation detection, moderation API enforcement checks, and governance decision-making. The workflow intelligently routes content based on severity classification, escalating high-risk submissions for human moderator review while auto-processing clear-cut decisions. By merging parallel validation paths and maintaining comprehensive audit logs, it ensures consistent policy application across all content while preserving human judgment for nuanced cases requiring contextual understanding.\n\n## Setup Steps\n1. Configure Content Submission Webhook trigger endpoint\n2. Connect Workflow Configuration node with content policy parameters\n3. Set up Content Validation Agent with Claude/OpenAI API credentials\n4. Configure parallel AI processing nodes\n5. Connect Governance Orchestration Agent with AI API credentials\n6. Set up multi-model validation \n7. Configure Route by Severity node with classification thresholds\n \n## Prerequisites\nClaude/OpenAI API credentials for content validation, moderation API access for policy enforcement\n## Use Cases\nSocial media platforms moderating user posts and comments, online marketplaces reviewing product listings\n## Customization\nAdjust severity thresholds for platform-specific risk tolerance\n## Benefits\nReduces content review time by 85%, ensures consistent policy enforcement across all submissions","workflow":{"id":"Q9eQ1TNw9T9xr-Kh-CDnk","meta":{"instanceId":"b91e510ebae4127f953fd2f5f8d40d58ca1e71c746d4500c12ae86aad04c1502"},"name":"AI-Powered Content Moderation and Governance Orchestration System","tags":[],"nodes":[{"id":"7f0f732c-2f51-4729-bddd-a5392620b00d","name":"Content Submission Webhook","type":"n8n-nodes-base.webhook","position":[-928,32],"webhookId":"791b5554-5ca8-4123-9fe6-bfe527c13c8c","parameters":{"path":"content-moderation","options":{},"httpMethod":"POST","responseMode":"lastNode"},"typeVersion":2.1},{"id":"c61ffaa3-ec98-4992-83f8-22ed061140a6","name":"Workflow Configuration","type":"n8n-nodes-base.set","position":[-704,32],"parameters":{"options":{},"assignments":{"assignments":[{"id":"id-1","name":"toxicityThreshold","type":"number","value":0.7},{"id":"id-2","name":"spamThreshold","type":"number","value":0.8},{"id":"id-3","name":"engagementAnomalyThreshold","type":"number","value":2.5},{"id":"id-4","name":"monetizationApiUrl","type":"string","value":"<__PLACEHOLDER_VALUE__Creator Monetization API URL__>"},{"id":"id-5","name":"enforcementApiUrl","type":"string","value":"<__PLACEHOLDER_VALUE__Content Enforcement API URL__>"},{"id":"id-6","name":"moderatorNotificationUrl","type":"string","value":"<__PLACEHOLDER_VALUE__Human Moderator Notification Webhook URL__>"}]},"includeOtherFields":true},"typeVersion":3.4},{"id":"c934cd4c-b427-4eda-9f1d-712030a5d994","name":"Claude Model - Content Validation","type":"@n8n/n8n-nodes-langchain.lmChatAnthropic","position":[-528,240],"parameters":{"model":{"__rl":true,"mode":"list","value":"claude-sonnet-4-5-20250929","cachedResultName":"Claude Sonnet 4.5"},"options":{}},"credentials":{"anthropicApi":{"id":"S8laStQPC1u3EYuZ","name":"Anthropic account"}},"typeVersion":1.3},{"id":"6877dff9-a39c-4cf0-8e1a-47f88b33a3be","name":"Claude Model - Governance Orchestration","type":"@n8n/n8n-nodes-langchain.lmChatAnthropic","position":[-128,256],"parameters":{"model":{"__rl":true,"mode":"list","value":"claude-sonnet-4-5-20250929","cachedResultName":"Claude Sonnet 4.5"},"options":{}},"credentials":{"anthropicApi":{"id":"S8laStQPC1u3EYuZ","name":"Anthropic account"}},"typeVersion":1.3},{"id":"4bc98172-4bf8-45e5-9c53-8d2be4c4f4d5","name":"Content Validation Output Parser","type":"@n8n/n8n-nodes-langchain.outputParserStructured","position":[-344,256],"parameters":{"schemaType":"manual","inputSchema":"{\n  \"type\": \"object\",\n  \"properties\": {\n    \"contentId\": {\n      \"type\": \"string\",\n      \"description\": \"Unique identifier for the content\"\n    },\n    \"toxicityScore\": {\n      \"type\": \"number\",\n      \"description\": \"Toxicity score from 0 to 1\"\n    },\n    \"spamScore\": {\n      \"type\": \"number\",\n      \"description\": \"Spam likelihood score from 0 to 1\"\n    },\n    \"engagementAnomaly\": {\n      \"type\": \"boolean\",\n      \"description\": \"Whether engagement patterns are anomalous\"\n    },\n    \"engagementAnomalyScore\": {\n      \"type\": \"number\",\n      \"description\": \"Anomaly score for engagement patterns\"\n    },\n    \"behaviorFlags\": {\n      \"type\": \"array\",\n      \"items\": {\"type\": \"string\"},\n      \"description\": \"List of behavior flags detected\"\n    },\n    \"contentCategory\": {\n      \"type\": \"string\",\n      \"description\": \"Category of content\"\n    },\n    \"riskLevel\": {\n      \"type\": \"string\",\n      \"enum\": [\"low\", \"medium\", \"high\", \"critical\"],\n      \"description\": \"Overall risk level\"\n    },\n    \"reasoning\": {\n      \"type\": \"string\",\n      \"description\": \"Explanation of the validation assessment\"\n    }\n  },\n  \"required\": [\"contentId\", \"toxicityScore\", \"spamScore\", \"engagementAnomaly\", \"riskLevel\", \"reasoning\"]\n}"},"typeVersion":1.3},{"id":"7ee54f97-6895-492a-a62d-c7c009357034","name":"Governance Decision Output Parser","type":"@n8n/n8n-nodes-langchain.outputParserStructured","position":[256,256],"parameters":{"schemaType":"manual","inputSchema":"{\n  \"type\": \"object\",\n  \"properties\": {\n    \"action\": {\n      \"type\": \"string\",\n      \"enum\": [\"approve\", \"flag\", \"remove\", \"suspend_creator\", \"demonetize\"],\n      \"description\": \"Enforcement action to take\"\n    },\n    \"severity\": {\n      \"type\": \"string\",\n      \"enum\": [\"low\", \"medium\", \"high\"],\n      \"description\": \"Severity level of the issue\"\n    },\n    \"requiresHumanReview\": {\n      \"type\": \"boolean\",\n      \"description\": \"Whether human moderator review is required\"\n    },\n    \"monetizationImpact\": {\n      \"type\": \"string\",\n      \"enum\": [\"none\", \"warning\", \"temporary_suspension\", \"permanent_demonetization\"],\n      \"description\": \"Impact on creator monetization\"\n    },\n    \"enforcementDetails\": {\n      \"type\": \"object\",\n      \"properties\": {\n        \"reason\": {\"type\": \"string\"},\n        \"duration\": {\"type\": \"string\"},\n        \"appealable\": {\"type\": \"boolean\"}\n      }\n    },\n    \"reasoning\": {\n      \"type\": \"string\",\n      \"description\": \"Explanation of the governance decision\"\n    }\n  },\n  \"required\": [\"action\", \"severity\", \"requiresHumanReview\", \"monetizationImpact\", \"reasoning\"]\n}"},"typeVersion":1.3},{"id":"e01f98a0-ac77-4b02-b178-94ebb8879cee","name":"Content Validation Agent","type":"@n8n/n8n-nodes-langchain.agent","position":[-480,32],"parameters":{"text":"=Content Data: {{ JSON.stringify($json) }}","options":{"systemMessage":"=You are a Content Validation Agent specialized in monitoring structured engagement, content moderation, and behavior signals.\n\nYour task is to:\n1. Analyze submitted content for toxicity, spam, hate speech, misinformation, and policy violations\n2. Evaluate engagement patterns (likes, shares, comments, view velocity) for anomalies indicating manipulation or bot activity\n3. Assess behavior signals including:\n   - Rapid follower growth patterns\n   - Coordinated inauthentic behavior\n   - Suspicious engagement ratios\n   - Content repetition or plagiarism\n4. Calculate toxicity score (0-1) based on language analysis\n5. Calculate spam score (0-1) based on content patterns\n6. Detect engagement anomalies using statistical thresholds\n7. Identify behavior flags (bot_activity, coordinated_manipulation, spam_network, etc.)\n8. Classify content category (educational, entertainment, news, promotional, etc.)\n9. Assign overall risk level (low/medium/high/critical)\n10. Provide detailed reasoning for your assessment\n\nConsider:\n- Content text, metadata, and media\n- Historical engagement patterns\n- Creator reputation and history\n- Platform policy guidelines\n- Community standards\n- Contextual factors (trending topics, current events)\n\nUse the configured thresholds from workflow configuration:\n- Toxicity threshold: {{ $('Workflow Configuration').first().json.toxicityThreshold }}\n- Spam threshold: {{ $('Workflow Configuration').first().json.spamThreshold }}\n- Engagement anomaly threshold: {{ $('Workflow Configuration').first().json.engagementAnomalyThreshold }}\n\nReturn structured JSON output with all required fields."},"promptType":"define","hasOutputParser":true},"typeVersion":3.1},{"id":"20090aaa-b50a-42cc-ac14-a0ee5e07abb1","name":"Governance Orchestration Agent","type":"@n8n/n8n-nodes-langchain.agent","position":[-8,32],"parameters":{"text":"=Validation Results: {{ JSON.stringify($json.output) }}","options":{"systemMessage":"You are a Governance Orchestration Agent responsible for coordinating enforcement workflows, creator monetization, anomaly detection, and escalation to human moderators.\n\nYour task is to:\n1. Review content validation results from the Content Validation Agent\n2. Determine appropriate enforcement action based on risk level and policy violations\n3. Coordinate monetization impacts for creators (warnings, suspensions, demonetization)\n4. Decide when human moderator review is required\n5. Execute enforcement workflows through available tools\n6. Maintain fairness, transparency, and consistency in decisions\n7. Generate detailed reasoning for audit trails\n\nAvailable Tools:\n- Monetization API Tool: Adjust creator monetization status, issue warnings, apply suspensions\n- Enforcement API Tool: Execute content actions (flag, remove, restrict visibility)\n\nEnforcement Guidelines:\n- Low severity: Approve or flag for monitoring\n- Medium severity: Flag, issue warning, or temporary restrictions\n- High severity: Remove content, suspend creator, or demonetize\n- Critical risk: Always require human review\n\nMonetization Impact Levels:\n- none: No impact on monetization\n- warning: Issue warning to creator\n- temporary_suspension: Suspend monetization for defined period\n- permanent_demonetization: Permanently remove monetization eligibility\n\nHuman Review Required When:\n- Risk level is critical\n- Severity is high AND content is borderline\n- Enforcement action involves permanent demonetization\n- Multiple policy violations detected\n- Appeal or dispute is likely\n\nActions:\n- approve: Content passes validation\n- flag: Mark for monitoring\n- remove: Delete content\n- suspend_creator: Temporarily suspend creator account\n- demonetize: Remove monetization privileges\n\nEnsure all decisions:\n- Are proportional to the violation\n- Consider creator history and context\n- Provide clear reasoning\n- Enable appeals when appropriate\n- Maintain transparency\n\nReturn structured JSON output with enforcement decision, severity, human review flag, monetization impact, and detailed reasoning."},"promptType":"define","hasOutputParser":true},"typeVersion":3.1},{"id":"168dc101-72ac-4628-b80f-2514ea8b2e51","name":"Monetization API Tool","type":"n8n-nodes-base.httpRequestTool","position":[0,256],"parameters":{"url":"={{ $('Workflow Configuration').first().json.monetizationApiUrl }}","method":"POST","options":{},"jsonBody":"={\n  \"creatorId\": $fromAI('creatorId', 'Creator identifier', 'string'),\n  \"contentId\": $fromAI('contentId', 'Content identifier', 'string'),\n  \"action\": $fromAI('monetizationAction', 'Monetization action: warning, temporary_suspension, or permanent_demonetization', 'string'),\n  \"reason\": $fromAI('reason', 'Reason for monetization impact', 'string'),\n  \"duration\": $fromAI('duration', 'Duration for temporary suspensions (e.g., 7d, 30d)', 'string', 'N/A')\n}","sendBody":true,"specifyBody":"json","toolDescription":"Adjusts creator monetization status including warnings, temporary suspensions, and permanent demonetization"},"typeVersion":4.3},{"id":"84d0386f-e672-4c91-94a8-84cb9fb9b983","name":"Enforcement API Tool","type":"n8n-nodes-base.httpRequestTool","position":[128,256],"parameters":{"url":"={{ $('Workflow Configuration').first().json.enforcementApiUrl }}","method":"POST","options":{},"jsonBody":"={\n  \"contentId\": $fromAI('contentId', 'Content identifier', 'string'),\n  \"action\": $fromAI('enforcementAction', 'Enforcement action: flag, remove, or restrict', 'string'),\n  \"reason\": $fromAI('reason', 'Reason for enforcement action', 'string'),\n  \"appealable\": $fromAI('appealable', 'Whether the action can be appealed', 'boolean', true)\n}","sendBody":true,"specifyBody":"json","toolDescription":"Executes content enforcement actions including flagging, removal, and visibility restrictions"},"typeVersion":4.3},{"id":"33bdba20-85bf-4770-85b9-7706eda47096","name":"Route by Severity","type":"n8n-nodes-base.switch","position":[544,0],"parameters":{"rules":{"values":[{"outputKey":"Low Severity","conditions":{"options":{"leftValue":"","caseSensitive":false,"typeValidation":"loose"},"combinator":"and","conditions":[{"operator":{"type":"string","operation":"equals"},"leftValue":"={{ $json.output.severity }}","rightValue":"low"}]},"renameOutput":true},{"outputKey":"Medium Severity","conditions":{"options":{"leftValue":"","caseSensitive":false,"typeValidation":"loose"},"combinator":"and","conditions":[{"operator":{"type":"string","operation":"equals"},"leftValue":"={{ $json.output.severity }}","rightValue":"medium"}]},"renameOutput":true},{"outputKey":"High Severity","conditions":{"options":{"leftValue":"","caseSensitive":false,"typeValidation":"loose"},"combinator":"and","conditions":[{"operator":{"type":"string","operation":"equals"},"leftValue":"={{ $json.output.severity }}","rightValue":"high"}]},"renameOutput":true}]},"options":{"ignoreCase":true,"fallbackOutput":"extra","renameFallbackOutput":"Unknown Severity"}},"typeVersion":3.4},{"id":"23671a81-2c91-4d11-a9a7-034f4f94da8b","name":"Check Human Review Required","type":"n8n-nodes-base.if","position":[752,96],"parameters":{"options":{},"conditions":{"options":{"leftValue":"","caseSensitive":false,"typeValidation":"loose"},"combinator":"and","conditions":[{"id":"id-1","operator":{"type":"boolean","operation":"equals"},"leftValue":"={{ $json.output.requiresHumanReview }}","rightValue":true}]}},"typeVersion":2.3},{"id":"c5a0b504-1657-453c-90a7-e7397a32d73e","name":"Notify Human Moderators","type":"n8n-nodes-base.httpRequest","position":[976,176],"parameters":{"url":"={{ $('Workflow Configuration').first().json.moderatorNotificationUrl }}","method":"POST","options":{},"jsonBody":"={\n  \"contentId\": $json.output.contentId || $json.contentId,\n  \"severity\": $json.output.severity,\n  \"action\": $json.output.action,\n  \"validationResults\": $('Content Validation Agent').first().json.output,\n  \"governanceDecision\": $json.output,\n  \"timestamp\": $now.toISO(),\n  \"priority\": $json.output.severity === 'high' ? 'urgent' : 'normal',\n  \"message\": \"Human review required for content moderation decision\"\n}","sendBody":true,"specifyBody":"json"},"typeVersion":4.3},{"id":"9ce20f2a-54e5-4992-991a-f5068c6b8159","name":"Merge All Paths","type":"n8n-nodes-base.merge","position":[1200,0],"parameters":{"numberInputs":4},"typeVersion":3.2},{"id":"de3b303b-6935-4816-8894-66b3220680f6","name":"Audit Log Storage","type":"n8n-nodes-base.dataTable","position":[1584,32],"parameters":{"options":{},"operation":"upsert","dataTableId":{"__rl":true,"mode":"name","value":"content_moderation_audit_log"}},"typeVersion":1.1},{"id":"47fd8fcc-eb58-411e-aa30-ed152193bbb3","name":"Prepare Audit Record","type":"n8n-nodes-base.set","position":[1360,32],"parameters":{"options":{},"assignments":{"assignments":[{"id":"id-1","name":"auditTimestamp","type":"string","value":"={{ $now.toISO() }}"},{"id":"id-2","name":"contentId","type":"string","value":"={{ $json.output?.contentId || $json.contentId || 'unknown' }}"},{"id":"id-3","name":"validationResults","type":"object","value":"={{ JSON.stringify($('Content Validation Agent').first().json.output) }}"},{"id":"id-4","name":"governanceDecision","type":"object","value":"={{ JSON.stringify($json.output) }}"},{"id":"id-5","name":"humanReviewTriggered","type":"boolean","value":"={{ $('Check Human Review Required').item.json.output?.requiresHumanReview || false }}"},{"id":"id-6","name":"workflowStatus","type":"string","value":"completed"}]},"includeOtherFields":true},"typeVersion":3.4},{"id":"3bddc77a-39a3-4855-940a-cf59bfe6946c","name":"Sticky Note","type":"n8n-nodes-base.stickyNote","position":[336,-544],"parameters":{"color":4,"width":512,"height":352,"content":"## Prerequisites\nClaude/OpenAI API credentials for content validation, moderation API access for policy enforcement\n## Use Cases\nSocial media platforms moderating user posts and comments, online marketplaces reviewing product listings\n## Customization\nAdjust severity thresholds for platform-specific risk tolerance\n## Benefits\nReduces content review time by 85%, ensures consistent policy enforcement across all submissions"},"typeVersion":1},{"id":"efeed41f-b202-41c8-a210-cd3110704c3a","name":"Sticky Note1","type":"n8n-nodes-base.stickyNote","position":[-224,-464],"parameters":{"width":496,"height":256,"content":"## Setup Steps\n1. Configure Content Submission Webhook trigger endpoint\n2. Connect Workflow Configuration node with content policy parameters\n3. Set up Content Validation Agent with Claude/OpenAI API credentials\n4. Configure parallel AI processing nodes\n5. Connect Governance Orchestration Agent with AI API credentials\n6. Set up multi-model validation \n7. Configure Route by Severity node with classification thresholds"},"typeVersion":1},{"id":"521dedeb-13e2-4e5c-b89a-7df809c87a2e","name":"Sticky Note2","type":"n8n-nodes-base.stickyNote","position":[-976,-512],"parameters":{"width":672,"height":304,"content":"## How It Works\nThis workflow automates intelligent content moderation and governance enforcement through multi-model AI validation. Designed for social media platforms, online communities, and user-generated content platforms, it solves the critical challenge of scaling content review while maintaining consistent policy enforcement and human oversight for edge cases. The system receives content submissions via webhook, processing them through a dual-agent AI framework for content validation and governance orchestration. It employs specialized AI models for policy violation detection, moderation API enforcement checks, and governance decision-making. The workflow intelligently routes content based on severity classification, escalating high-risk submissions for human moderator review while auto-processing clear-cut decisions. By merging parallel validation paths and maintaining comprehensive audit logs, it ensures consistent policy application across all content while preserving human judgment for nuanced cases requiring contextual understanding."},"typeVersion":1},{"id":"245ab01a-dfee-4bae-9b24-02f693a5bd16","name":"Sticky Note3","type":"n8n-nodes-base.stickyNote","position":[464,-160],"parameters":{"color":7,"width":1296,"height":656,"content":"## Severity-Based Human Escalation\n**What:** Routes content based on severity scores with automatic human moderator notification for edge cases requiring judgment\n**Why:** Balances automation efficiency with human oversight ensuring nuanced decisions receive appropriate review while clear violations process instantly"},"typeVersion":1},{"id":"221f21f4-8086-450c-8cee-593a195921a6","name":"Sticky Note4","type":"n8n-nodes-base.stickyNote","position":[-160,-160],"parameters":{"color":7,"width":608,"height":656,"content":"## Multi-Model Policy Enforcement\n**What:** Validates content through Claude AI, moderation APIs, and reinforcement learning models for comprehensive policy coverage\n**Why:** Leverages specialized models for different violation types ensuring no policy breach escapes detection through single-model limitations"},"typeVersion":1},{"id":"0049781a-5cd5-4150-ac1d-37ac66197f7f","name":"Sticky Note5","type":"n8n-nodes-base.stickyNote","position":[-976,-160],"parameters":{"color":7,"width":784,"height":656,"content":"## Dual-Agent Content Analysis\n**What:** Processes submissions through parallel AI agents for content policy validation and governance orchestration with specialized output parsing\n**Why:** Separates technical violation detection from governance decision-making to ensure thorough evaluation across compliance and contextual dimensions"},"typeVersion":1}],"active":false,"pinData":{},"settings":{"availableInMCP":false,"executionOrder":"v1"},"versionId":"69024db7-f691-4e54-a33e-3c08fa1af27a","connections":{"Merge All Paths":{"main":[[{"node":"Prepare Audit Record","type":"main","index":0}]]},"Route by Severity":{"main":[[{"node":"Merge All Paths","type":"main","index":0}],[{"node":"Merge All Paths","type":"main","index":1}],[{"node":"Check Human Review Required","type":"main","index":0}]]},"Enforcement API Tool":{"ai_tool":[[{"node":"Governance Orchestration Agent","type":"ai_tool","index":0}]]},"Prepare Audit Record":{"main":[[{"node":"Audit Log Storage","type":"main","index":0}]]},"Monetization API Tool":{"ai_tool":[[{"node":"Governance Orchestration Agent","type":"ai_tool","index":0}]]},"Workflow Configuration":{"main":[[{"node":"Content Validation Agent","type":"main","index":0}]]},"Notify Human Moderators":{"main":[[{"node":"Merge All Paths","type":"main","index":3}]]},"Content Validation Agent":{"main":[[{"node":"Governance Orchestration Agent","type":"main","index":0}]]},"Content Submission Webhook":{"main":[[{"node":"Workflow Configuration","type":"main","index":0}]]},"Check Human Review Required":{"main":[[{"node":"Notify Human Moderators","type":"main","index":0}],[{"node":"Merge All Paths","type":"main","index":2}]]},"Governance Orchestration Agent":{"main":[[{"node":"Route by Severity","type":"main","index":0}]]},"Content Validation Output Parser":{"ai_outputParser":[[{"node":"Content Validation Agent","type":"ai_outputParser","index":0}]]},"Claude Model - Content Validation":{"ai_languageModel":[[{"node":"Content Validation Agent","type":"ai_languageModel","index":0}]]},"Governance Decision Output Parser":{"ai_outputParser":[[{"node":"Governance Orchestration Agent","type":"ai_outputParser","index":0}]]},"Claude Model - Governance Orchestration":{"ai_languageModel":[[{"node":"Governance Orchestration Agent","type":"ai_languageModel","index":0}]]}}},"lastUpdatedBy":1,"workflowInfo":{"nodeCount":22,"nodeTypes":{"n8n-nodes-base.if":{"count":1},"n8n-nodes-base.set":{"count":2},"n8n-nodes-base.merge":{"count":1},"n8n-nodes-base.switch":{"count":1},"n8n-nodes-base.webhook":{"count":1},"n8n-nodes-base.dataTable":{"count":1},"n8n-nodes-base.stickyNote":{"count":6},"n8n-nodes-base.httpRequest":{"count":1},"@n8n/n8n-nodes-langchain.agent":{"count":2},"n8n-nodes-base.httpRequestTool":{"count":2},"@n8n/n8n-nodes-langchain.lmChatAnthropic":{"count":2},"@n8n/n8n-nodes-langchain.outputParserStructured":{"count":2}}},"status":"published","readyToDemo":null,"user":{"name":"Cheng Siong Chin","username":"cschin","bio":"Dr. Cheng Siong CHIN is an n8n workflow creator specializing in AI-powered automation, agent orchestration, and intelligent system integrations. He designs and builds end-to-end workflows that combine LLMs, APIs, and data pipelines to streamline complex processes and deliver production-ready automation solutions. Contact me to discuss custom AI workflows and agent architectures.\n","verified":true,"links":["https://gravatar.com/mysticluminary9fa255f7f5"],"avatar":"https://gravatar.com/avatar/54544f98e839bb9dd9a764ad1e6823eeddb6db5138d201e42f291a7b0a73303f?r=pg&d=retro&size=200"},"nodes":[{"id":19,"icon":"file:httprequest.svg","name":"n8n-nodes-base.httpRequest","codex":{"data":{"alias":["API","Request","URL","Build","cURL"],"resources":{"generic":[{"url":"https://n8n.io/blog/2021-the-year-to-automate-the-new-you-with-n8n/","icon":"☀️","label":"2021: The Year to Automate the New You with n8n"},{"url":"https://n8n.io/blog/why-business-process-automation-with-n8n-can-change-your-daily-life/","icon":"🧬","label":"Why business process automation with n8n can change your daily life"},{"url":"https://n8n.io/blog/automatically-pulling-and-visualizing-data-with-n8n/","icon":"📈","label":"Automatically pulling and visualizing data with n8n"},{"url":"https://n8n.io/blog/learn-how-to-automatically-cross-post-your-content-with-n8n/","icon":"✍️","label":"Learn how to automatically cross-post your content with n8n"},{"url":"https://n8n.io/blog/automatically-adding-expense-receipts-to-google-sheets-with-telegram-mindee-twilio-and-n8n/","icon":"🧾","label":"Automatically Adding Expense Receipts to Google Sheets with Telegram, Mindee, Twilio, and n8n"},{"url":"https://n8n.io/blog/running-n8n-on-ships-an-interview-with-maranics/","icon":"🛳","label":"Running n8n on ships: An interview with Maranics"},{"url":"https://n8n.io/blog/what-are-apis-how-to-use-them-with-no-code/","icon":" 🪢","label":"What are APIs and how to use them with no code"},{"url":"https://n8n.io/blog/5-tasks-you-can-automate-with-notion-api/","icon":"⚡️","label":"5 tasks you can automate with the new Notion API "},{"url":"https://n8n.io/blog/world-poetry-day-workflow/","icon":"📜","label":"Celebrating World Poetry Day with a daily poem in Telegram"},{"url":"https://n8n.io/blog/automate-google-apps-for-productivity/","icon":"💡","label":"15 Google apps you can combine and automate to increase productivity"},{"url":"https://n8n.io/blog/automate-designs-with-bannerbear-and-n8n/","icon":"🎨","label":"Automate Designs with Bannerbear and n8n"},{"url":"https://n8n.io/blog/how-uproc-scraped-a-multi-page-website-with-a-low-code-workflow/","icon":" 🕸️","label":"How uProc scraped a multi-page website with a low-code workflow"},{"url":"https://n8n.io/blog/building-an-expense-tracking-app-in-10-minutes/","icon":"📱","label":"Building an expense tracking app in 10 minutes"},{"url":"https://n8n.io/blog/5-workflow-automations-for-mattermost-that-we-love-at-n8n/","icon":"🤖","label":"5 workflow automations for Mattermost that we love at n8n"},{"url":"https://n8n.io/blog/how-to-use-the-http-request-node-the-swiss-army-knife-for-workflow-automation/","icon":"🧰","label":"How to use the HTTP Request Node - The Swiss Army Knife for Workflow Automation"},{"url":"https://n8n.io/blog/learn-how-to-use-webhooks-with-mattermost-slash-commands/","icon":"🦄","label":"Learn how to use webhooks with Mattermost slash commands"},{"url":"https://n8n.io/blog/how-a-membership-development-manager-automates-his-work-and-investments/","icon":"📈","label":"How a Membership Development Manager automates his work and investments"},{"url":"https://n8n.io/blog/a-low-code-bitcoin-ticker-built-with-questdb-and-n8n-io/","icon":"📈","label":"A low-code bitcoin ticker built with QuestDB and n8n.io"},{"url":"https://n8n.io/blog/how-to-set-up-a-ci-cd-pipeline-with-no-code/","icon":"🎡","label":"How to set up a no-code CI/CD pipeline with GitHub and TravisCI"},{"url":"https://n8n.io/blog/automations-for-activists/","icon":"✨","label":"How Common Knowledge use workflow automation for activism"},{"url":"https://n8n.io/blog/creating-scheduled-text-affirmations-with-n8n/","icon":"🤟","label":"Creating scheduled text affirmations with n8n"},{"url":"https://n8n.io/blog/how-goomer-automated-their-operations-with-over-200-n8n-workflows/","icon":"🛵","label":"How Goomer automated their operations with over 200 n8n workflows"},{"url":"https://n8n.io/blog/aws-workflow-automation/","label":"7 no-code workflow automations for Amazon Web Services"}],"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/core-nodes/n8n-nodes-base.httprequest/"}]},"categories":["Development","Core Nodes"],"nodeVersion":"1.0","codexVersion":"1.0","subcategories":{"Core Nodes":["Helpers"]}}},"group":"[\"output\"]","defaults":{"name":"HTTP Request","color":"#0004F5"},"iconData":{"type":"file","fileBuffer":"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MCAyMEM0MCA4Ljk1MzE0IDMxLjA0NjkgMCAyMCAwQzguOTUzMTQgMCAwIDguOTUzMTQgMCAyMEMwIDMxLjA0NjkgOC45NTMxNCA0MCAyMCA0MEMzMS4wNDY5IDQwIDQwIDMxLjA0NjkgNDAgMjBaTTIwIDM2Ljk0NThDMTguODg1MiAzNi45NDU4IDE3LjEzNzggMzUuOTY3IDE1LjQ5OTggMzIuNjk4NUMxNC43OTY0IDMxLjI5MTggMTQuMTk2MSAyOS41NDMxIDEzLjc1MjYgMjcuNjg0N0gyNi4xODk4QzI1LjgwNDUgMjkuNTQwMyAyNS4yMDQ0IDMxLjI5MDEgMjQuNTAwMiAzMi42OTg1QzIyLjg2MjIgMzUuOTY3IDIxLjExNDggMzYuOTQ1OCAyMCAzNi45NDU4Wk0xMi45MDY0IDIwQzEyLjkwNjQgMjEuNjA5NyAxMy4wMDg3IDIzLjE2NCAxMy4yMDAzIDI0LjYzMDVIMjYuNzk5N0MyNi45OTEzIDIzLjE2NCAyNy4wOTM2IDIxLjYwOTcgMjcuMDkzNiAyMEMyNy4wOTM2IDE4LjM5MDMgMjYuOTkxMyAxNi44MzYgMjYuNzk5NyAxNS4zNjk1SDEzLjIwMDNDMTMuMDA4NyAxNi44MzYgMTIuOTA2NCAxOC4zOTAzIDEyLjkwNjQgMjBaTTIwIDMuMDU0MTlDMjEuMTE0OSAzLjA1NDE5IDIyLjg2MjIgNC4wMzA3OCAyNC41MDAxIDcuMzAwMzlDMjUuMjA2NiA4LjcxNDA4IDI1LjgwNzIgMTAuNDA2NyAyNi4xOTIgMTIuMzE1M0gxMy43NTAxQzE0LjE5MzMgMTAuNDA0NyAxNC43OTQyIDguNzEyNTQgMTUuNDk5OCA3LjMwMDY0QzE3LjEzNzcgNC4wMzA4MyAxOC44ODUxIDMuMDU0MTkgMjAgMy4wNTQxOVpNMzAuMTQ3OCAyMEMzMC4xNDc4IDE4LjQwOTkgMzAuMDU0MyAxNi44NjE3IDI5LjgyMjcgMTUuMzY5NUgzNi4zMDQyQzM2LjcyNTIgMTYuODQyIDM2Ljk0NTggMTguMzk2NCAzNi45NDU4IDIwQzM2Ljk0NTggMjEuNjAzNiAzNi43MjUyIDIzLjE1OCAzNi4zMDQyIDI0LjYzMDVIMjkuODIyN0MzMC4wNTQzIDIzLjEzODMgMzAuMTQ3OCAyMS41OTAxIDMwLjE0NzggMjBaTTI2LjI3NjcgNC4yNTUxMkMyNy42MzY1IDYuMzYwMTkgMjguNzExIDkuMTMyIDI5LjM3NzQgMTIuMzE1M0gzNS4xMDQ2QzMzLjI1MTEgOC42NjggMzAuMTA3IDUuNzgzNDYgMjYuMjc2NyA0LjI1NTEyWk0xMC42MjI2IDEyLjMxNTNINC44OTI5M0M2Ljc1MTQ3IDguNjY3ODQgOS44OTM1MSA1Ljc4MzQxIDEzLjcyMzIgNC4yNTUxM0MxMi4zNjM1IDYuMzYwMjEgMTEuMjg5IDkuMTMyMDEgMTAuNjIyNiAxMi4zMTUzWk0zLjA1NDE5IDIwQzMuMDU0MTkgMjEuNjAzIDMuMjc3NDMgMjMuMTU3NSAzLjY5NDg0IDI0LjYzMDVIMTAuMTIxN0M5Ljk0NjE5IDIzLjE0MiA5Ljg1MjIyIDIxLjU5NDMgOS44NTIyMiAyMEM5Ljg1MjIyIDE4LjQwNTcgOS45NDYxOSAxNi44NTggMTAuMTIxNyAxNS4zNjk1SDMuNjk0ODRDMy4yNzc0MyAxNi44NDI1IDMuMDU0MTkgMTguMzk3IDMuMDU0MTkgMjBaTTI2LjI3NjYgMzUuNzQyN0MyNy42MzY1IDMzLjYzOTMgMjguNzExIDMwLjg2OCAyOS4zNzc0IDI3LjY4NDdIMzUuMTA0NkMzMy4yNTEgMzEuMzMyMiAzMC4xMDY4IDM0LjIxNzkgMjYuMjc2NiAzNS43NDI3Wk0xMy43MjM0IDM1Ljc0MjdDOS44OTM2OSAzNC4yMTc5IDYuNzUxNTUgMzEuMzMyNCA0Ljg5MjkzIDI3LjY4NDdIMTAuNjIyNkMxMS4yODkgMzAuODY4IDEyLjM2MzUgMzMuNjM5MyAxMy43MjM0IDM1Ljc0MjdaIiBmaWxsPSIjM0E0MkU5Ii8+Cjwvc3ZnPgo="},"displayName":"HTTP Request","typeVersion":4,"nodeCategories":[{"id":5,"name":"Development"},{"id":9,"name":"Core Nodes"}]},{"id":20,"icon":"fa:map-signs","name":"n8n-nodes-base.if","codex":{"data":{"alias":["Router","Filter","Condition","Logic","Boolean","Branch"],"details":"The IF node can be used to implement binary conditional logic in your workflow. You can set up one-to-many conditions to evaluate each item of data being inputted into the node. That data will either evaluate to TRUE or FALSE and route out of the node accordingly.\n\nThis node has multiple types of conditions: Bool, String, Number, and Date & Time.","resources":{"generic":[{"url":"https://n8n.io/blog/learn-to-automate-your-factorys-incident-reporting-a-step-by-step-guide/","icon":"🏭","label":"Learn to Automate Your Factory's Incident Reporting: A Step by Step Guide"},{"url":"https://n8n.io/blog/2021-the-year-to-automate-the-new-you-with-n8n/","icon":"☀️","label":"2021: The Year to Automate the New You with n8n"},{"url":"https://n8n.io/blog/why-business-process-automation-with-n8n-can-change-your-daily-life/","icon":"🧬","label":"Why business process automation with n8n can change your daily life"},{"url":"https://n8n.io/blog/create-a-toxic-language-detector-for-telegram/","icon":"🤬","label":"Create a toxic language detector for Telegram in 4 step"},{"url":"https://n8n.io/blog/no-code-ecommerce-workflow-automations/","icon":"store","label":"6 e-commerce workflows to power up your Shopify s"},{"url":"https://n8n.io/blog/how-to-build-a-low-code-self-hosted-url-shortener/","icon":"🔗","label":"How to build a low-code, self-hosted URL shortener in 3 steps"},{"url":"https://n8n.io/blog/automate-your-data-processing-pipeline-in-9-steps-with-n8n/","icon":"⚙️","label":"Automate your data processing pipeline in 9 steps"},{"url":"https://n8n.io/blog/how-to-get-started-with-crm-automation-and-no-code-workflow-ideas/","icon":"👥","label":"How to get started with CRM automation (with 3 no-code workflow ideas"},{"url":"https://n8n.io/blog/5-tasks-you-can-automate-with-notion-api/","icon":"⚡️","label":"5 tasks you can automate with the new Notion API "},{"url":"https://n8n.io/blog/automate-google-apps-for-productivity/","icon":"💡","label":"15 Google apps you can combine and automate to increase productivity"},{"url":"https://n8n.io/blog/automation-for-maintainers-of-open-source-projects/","icon":"🏷️","label":"How to automatically manage contributions to open-source projects"},{"url":"https://n8n.io/blog/how-uproc-scraped-a-multi-page-website-with-a-low-code-workflow/","icon":" 🕸️","label":"How uProc scraped a multi-page website with a low-code workflow"},{"url":"https://n8n.io/blog/5-workflow-automations-for-mattermost-that-we-love-at-n8n/","icon":"🤖","label":"5 workflow automations for Mattermost that we love at n8n"},{"url":"https://n8n.io/blog/why-this-product-manager-loves-workflow-automation-with-n8n/","icon":"🧠","label":"Why this Product Manager loves workflow automation with n8n"},{"url":"https://n8n.io/blog/sending-automated-congratulations-with-google-sheets-twilio-and-n8n/","icon":"🙌","label":"Sending Automated Congratulations with Google Sheets, Twilio, and n8n "},{"url":"https://n8n.io/blog/how-to-set-up-a-ci-cd-pipeline-with-no-code/","icon":"🎡","label":"How to set up a no-code CI/CD pipeline with GitHub and TravisCI"},{"url":"https://n8n.io/blog/benefits-of-automation-and-n8n-an-interview-with-hubspots-hugh-durkin/","icon":"🎖","label":"Benefits of automation and n8n: An interview with HubSpot's Hugh Durkin"},{"url":"https://n8n.io/blog/aws-workflow-automation/","label":"7 no-code workflow automations for Amazon Web Services"}],"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/core-nodes/n8n-nodes-base.if/"}]},"categories":["Core Nodes"],"nodeVersion":"1.0","codexVersion":"1.0","subcategories":{"Core Nodes":["Flow"]}}},"group":"[\"transform\"]","defaults":{"name":"If","color":"#408000"},"iconData":{"icon":"map-signs","type":"icon"},"displayName":"If","typeVersion":2,"nodeCategories":[{"id":9,"name":"Core Nodes"}]},{"id":24,"icon":"file:merge.svg","name":"n8n-nodes-base.merge","codex":{"data":{"alias":["Join","Concatenate","Wait"],"resources":{"generic":[{"url":"https://n8n.io/blog/how-to-sync-data-between-two-systems/","icon":"🏬","label":"How to synchronize data between two systems (one-way vs. two-way sync"},{"url":"https://n8n.io/blog/supercharging-your-conference-registration-process-with-n8n/","icon":"🎫","label":"Supercharging your conference registration process with n8n"},{"url":"https://n8n.io/blog/migrating-community-metrics-to-orbit-using-n8n/","icon":"📈","label":"Migrating Community Metrics to Orbit using n8n"},{"url":"https://n8n.io/blog/build-your-own-virtual-assistant-with-n8n-a-step-by-step-guide/","icon":"👦","label":"Build your own virtual assistant with n8n: A step by step guide"},{"url":"https://n8n.io/blog/sending-automated-congratulations-with-google-sheets-twilio-and-n8n/","icon":"🙌","label":"Sending Automated Congratulations with Google Sheets, Twilio, and n8n "},{"url":"https://n8n.io/blog/aws-workflow-automation/","label":"7 no-code workflow automations for Amazon Web Services"}],"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/core-nodes/n8n-nodes-base.merge/"}]},"categories":["Core Nodes"],"nodeVersion":"1.0","codexVersion":"1.0","subcategories":{"Core Nodes":["Flow","Data Transformation"]}}},"group":"[\"transform\"]","defaults":{"name":"Merge"},"iconData":{"type":"file","fileBuffer":"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTEyIiBoZWlnaHQ9IjUxMiIgdmlld0JveD0iMCAwIDUxMiA1MTIiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMF8xMTc3XzUxOCkiPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTAgNDhDMCAyMS40OTAzIDIxLjQ5MDMgMCA0OCAwSDExMkMxMzguNTEgMCAxNjAgMjEuNDkwMyAxNjAgNDhWNTZIMTk2LjI1MkMyNDAuNDM1IDU2IDI3Ni4yNTIgOTEuODE3MiAyNzYuMjUyIDEzNlYxOTJDMjc2LjI1MiAyMTQuMDkxIDI5NC4xNjEgMjMyIDMxNi4yNTIgMjMySDM1MlYyMjRDMzUyIDE5Ny40OSAzNzMuNDkgMTc2IDQwMCAxNzZINDY0QzQ5MC41MSAxNzYgNTEyIDE5Ny40OSA1MTIgMjI0VjI4OEM1MTIgMzE0LjUxIDQ5MC41MSAzMzYgNDY0IDMzNkg0MDBDMzczLjQ5IDMzNiAzNTIgMzE0LjUxIDM1MiAyODhWMjgwSDMxNi4yNTJDMjk0LjE2MSAyODAgMjc2LjI1MiAyOTcuOTA5IDI3Ni4yNTIgMzIwVjM3NkMyNzYuMjUyIDQyMC4xODMgMjQwLjQzNSA0NTYgMTk2LjI1MiA0NTZIMTYwVjQ2NEMxNjAgNDkwLjUxIDEzOC41MSA1MTIgMTEyIDUxMkg0OEMyMS40OTAzIDUxMiAwIDQ5MC41MSAwIDQ2NFY0MDBDMCAzNzMuNDkgMjEuNDkwMyAzNTIgNDggMzUySDExMkMxMzguNTEgMzUyIDE2MCAzNzMuNDkgMTYwIDQwMFY0MDhIMTk2LjI1MkMyMTMuOTI1IDQwOCAyMjguMjUyIDM5My42NzMgMjI4LjI1MiAzNzZWMzIwQzIyOC4yNTIgMjk0Ljc4NCAyMzguODU5IDI3Mi4wNDQgMjU1Ljg1MyAyNTZDMjM4Ljg1OSAyMzkuOTU2IDIyOC4yNTIgMjE3LjIxNiAyMjguMjUyIDE5MlYxMzZDMjI4LjI1MiAxMTguMzI3IDIxMy45MjUgMTA0IDE5Ni4yNTIgMTA0SDE2MFYxMTJDMTYwIDEzOC41MSAxMzguNTEgMTYwIDExMiAxNjBINDhDMjEuNDkwMyAxNjAgMCAxMzguNTEgMCAxMTJWNDhaTTEwNCA0OEMxMDguNDE4IDQ4IDExMiA1MS41ODE3IDExMiA1NlYxMDRDMTEyIDEwOC40MTggMTA4LjQxOCAxMTIgMTA0IDExMkg1NkM1MS41ODE3IDExMiA0OCAxMDguNDE4IDQ4IDEwNFY1NkM0OCA1MS41ODE3IDUxLjU4MTcgNDggNTYgNDhIMTA0Wk00NTYgMjI0QzQ2MC40MTggMjI0IDQ2NCAyMjcuNTgyIDQ2NCAyMzJWMjgwQzQ2NCAyODQuNDE4IDQ2MC40MTggMjg4IDQ1NiAyODhINDA4QzQwMy41ODIgMjg4IDQwMCAyODQuNDE4IDQwMCAyODBWMjMyQzQwMCAyMjcuNTgyIDQwMy41ODIgMjI0IDQwOCAyMjRINDU2Wk0xMTIgNDA4QzExMiA0MDMuNTgyIDEwOC40MTggNDAwIDEwNCA0MDBINTZDNTEuNTgxNyA0MDAgNDggNDAzLjU4MiA0OCA0MDhWNDU2QzQ4IDQ2MC40MTggNTEuNTgxNyA0NjQgNTYgNDY0SDEwNEMxMDguNDE4IDQ2NCAxMTIgNDYwLjQxOCAxMTIgNDU2VjQwOFoiIGZpbGw9IiM1NEI4QzkiLz4KPC9nPgo8ZGVmcz4KPGNsaXBQYXRoIGlkPSJjbGlwMF8xMTc3XzUxOCI+CjxyZWN0IHdpZHRoPSI1MTIiIGhlaWdodD0iNTEyIiBmaWxsPSJ3aGl0ZSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo="},"displayName":"Merge","typeVersion":3,"nodeCategories":[{"id":9,"name":"Core Nodes"}]},{"id":38,"icon":"fa:pen","name":"n8n-nodes-base.set","codex":{"data":{"alias":["Set","JS","JSON","Filter","Transform","Map"],"resources":{"generic":[{"url":"https://n8n.io/blog/learn-to-automate-your-factorys-incident-reporting-a-step-by-step-guide/","icon":"🏭","label":"Learn to Automate Your Factory's Incident Reporting: A Step by Step Guide"},{"url":"https://n8n.io/blog/2021-the-year-to-automate-the-new-you-with-n8n/","icon":"☀️","label":"2021: The Year to Automate the New You with n8n"},{"url":"https://n8n.io/blog/automatically-pulling-and-visualizing-data-with-n8n/","icon":"📈","label":"Automatically pulling and visualizing data with n8n"},{"url":"https://n8n.io/blog/database-monitoring-and-alerting-with-n8n/","icon":"📡","label":"Database Monitoring and Alerting with n8n"},{"url":"https://n8n.io/blog/automatically-adding-expense-receipts-to-google-sheets-with-telegram-mindee-twilio-and-n8n/","icon":"🧾","label":"Automatically Adding Expense Receipts to Google Sheets with Telegram, Mindee, Twilio, and n8n"},{"url":"https://n8n.io/blog/no-code-ecommerce-workflow-automations/","icon":"store","label":"6 e-commerce workflows to power up your Shopify s"},{"url":"https://n8n.io/blog/how-to-build-a-low-code-self-hosted-url-shortener/","icon":"🔗","label":"How to build a low-code, self-hosted URL shortener in 3 steps"},{"url":"https://n8n.io/blog/automate-your-data-processing-pipeline-in-9-steps-with-n8n/","icon":"⚙️","label":"Automate your data processing pipeline in 9 steps"},{"url":"https://n8n.io/blog/how-to-get-started-with-crm-automation-and-no-code-workflow-ideas/","icon":"👥","label":"How to get started with CRM automation (with 3 no-code workflow ideas"},{"url":"https://n8n.io/blog/5-tasks-you-can-automate-with-notion-api/","icon":"⚡️","label":"5 tasks you can automate with the new Notion API "},{"url":"https://n8n.io/blog/automate-google-apps-for-productivity/","icon":"💡","label":"15 Google apps you can combine and automate to increase productivity"},{"url":"https://n8n.io/blog/how-uproc-scraped-a-multi-page-website-with-a-low-code-workflow/","icon":" 🕸️","label":"How uProc scraped a multi-page website with a low-code workflow"},{"url":"https://n8n.io/blog/building-an-expense-tracking-app-in-10-minutes/","icon":"📱","label":"Building an expense tracking app in 10 minutes"},{"url":"https://n8n.io/blog/the-ultimate-guide-to-automate-your-video-collaboration-with-whereby-mattermost-and-n8n/","icon":"📹","label":"The ultimate guide to automate your video collaboration with Whereby, Mattermost, and n8n"},{"url":"https://n8n.io/blog/5-workflow-automations-for-mattermost-that-we-love-at-n8n/","icon":"🤖","label":"5 workflow automations for Mattermost that we love at n8n"},{"url":"https://n8n.io/blog/learn-to-build-powerful-api-endpoints-using-webhooks/","icon":"🧰","label":"Learn to Build Powerful API Endpoints Using Webhooks"},{"url":"https://n8n.io/blog/how-a-membership-development-manager-automates-his-work-and-investments/","icon":"📈","label":"How a Membership Development Manager automates his work and investments"},{"url":"https://n8n.io/blog/a-low-code-bitcoin-ticker-built-with-questdb-and-n8n-io/","icon":"📈","label":"A low-code bitcoin ticker built with QuestDB and n8n.io"},{"url":"https://n8n.io/blog/how-to-set-up-a-ci-cd-pipeline-with-no-code/","icon":"🎡","label":"How to set up a no-code CI/CD pipeline with GitHub and TravisCI"},{"url":"https://n8n.io/blog/benefits-of-automation-and-n8n-an-interview-with-hubspots-hugh-durkin/","icon":"🎖","label":"Benefits of automation and n8n: An interview with HubSpot's Hugh Durkin"},{"url":"https://n8n.io/blog/how-goomer-automated-their-operations-with-over-200-n8n-workflows/","icon":"🛵","label":"How Goomer automated their operations with over 200 n8n workflows"},{"url":"https://n8n.io/blog/aws-workflow-automation/","label":"7 no-code workflow automations for Amazon Web Services"}],"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/core-nodes/n8n-nodes-base.set/"}]},"categories":["Core Nodes"],"nodeVersion":"1.0","codexVersion":"1.0","subcategories":{"Core Nodes":["Data Transformation"]}}},"group":"[\"input\"]","defaults":{"name":"Edit Fields"},"iconData":{"icon":"pen","type":"icon"},"displayName":"Edit Fields (Set)","typeVersion":3,"nodeCategories":[{"id":9,"name":"Core Nodes"}]},{"id":47,"icon":"file:webhook.svg","name":"n8n-nodes-base.webhook","codex":{"data":{"alias":["HTTP","API","Build","WH"],"resources":{"generic":[{"url":"https://n8n.io/blog/learn-how-to-automatically-cross-post-your-content-with-n8n/","icon":"✍️","label":"Learn how to automatically cross-post your content with n8n"},{"url":"https://n8n.io/blog/running-n8n-on-ships-an-interview-with-maranics/","icon":"🛳","label":"Running n8n on ships: An interview with Maranics"},{"url":"https://n8n.io/blog/how-to-build-a-low-code-self-hosted-url-shortener/","icon":"🔗","label":"How to build a low-code, self-hosted URL shortener in 3 steps"},{"url":"https://n8n.io/blog/what-are-apis-how-to-use-them-with-no-code/","icon":" 🪢","label":"What are APIs and how to use them with no code"},{"url":"https://n8n.io/blog/5-tasks-you-can-automate-with-notion-api/","icon":"⚡️","label":"5 tasks you can automate with the new Notion API "},{"url":"https://n8n.io/blog/how-a-digital-strategist-uses-n8n-for-online-marketing/","icon":"💻","label":"How a digital strategist uses n8n for online marketing"},{"url":"https://n8n.io/blog/the-ultimate-guide-to-automate-your-video-collaboration-with-whereby-mattermost-and-n8n/","icon":"📹","label":"The ultimate guide to automate your video collaboration with Whereby, Mattermost, and n8n"},{"url":"https://n8n.io/blog/how-to-automatically-give-kudos-to-contributors-with-github-slack-and-n8n/","icon":"👏","label":"How to automatically give kudos to contributors with GitHub, Slack, and n8n"},{"url":"https://n8n.io/blog/5-workflow-automations-for-mattermost-that-we-love-at-n8n/","icon":"🤖","label":"5 workflow automations for Mattermost that we love at n8n"},{"url":"https://n8n.io/blog/why-this-product-manager-loves-workflow-automation-with-n8n/","icon":"🧠","label":"Why this Product Manager loves workflow automation with n8n"},{"url":"https://n8n.io/blog/creating-custom-incident-response-workflows-with-n8n/","label":"How to automate every step of an incident response workflow"},{"url":"https://n8n.io/blog/learn-to-build-powerful-api-endpoints-using-webhooks/","icon":"🧰","label":"Learn to Build Powerful API Endpoints Using Webhooks"},{"url":"https://n8n.io/blog/learn-how-to-use-webhooks-with-mattermost-slash-commands/","icon":"🦄","label":"Learn how to use webhooks with Mattermost slash commands"},{"url":"https://n8n.io/blog/how-goomer-automated-their-operations-with-over-200-n8n-workflows/","icon":"🛵","label":"How Goomer automated their operations with over 200 n8n workflows"}],"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/core-nodes/n8n-nodes-base.webhook/"}]},"categories":["Development","Core Nodes"],"nodeVersion":"1.0","codexVersion":"1.0","subcategories":{"Core Nodes":["Helpers"]}}},"group":"[\"trigger\"]","defaults":{"name":"Webhook"},"iconData":{"type":"file","fileBuffer":"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0OCIgaGVpZ2h0PSI0OCI+PHBhdGggZmlsbD0iIzM3NDc0ZiIgZD0iTTM1IDM3Yy0yLjIgMC00LTEuOC00LTRzMS44LTQgNC00IDQgMS44IDQgNC0xLjggNC00IDQiLz48cGF0aCBmaWxsPSIjMzc0NzRmIiBkPSJNMzUgNDNjLTMgMC01LjktMS40LTcuOC0zLjdsMy4xLTIuNWMxLjEgMS40IDIuOSAyLjMgNC43IDIuMyAzLjMgMCA2LTIuNyA2LTZzLTIuNy02LTYtNmMtMSAwLTIgLjMtMi45LjdsLTEuNyAxTDIzLjMgMTZsMy41LTEuOSA1LjMgOS40YzEtLjMgMi0uNSAzLS41IDUuNSAwIDEwIDQuNSAxMCAxMFM0MC41IDQzIDM1IDQzIi8+PHBhdGggZmlsbD0iIzM3NDc0ZiIgZD0iTTE0IDQzQzguNSA0MyA0IDM4LjUgNCAzM2MwLTQuNiAzLjEtOC41IDcuNS05LjdsMSAzLjlDOS45IDI3LjkgOCAzMC4zIDggMzNjMCAzLjMgMi43IDYgNiA2czYtMi43IDYtNnYtMmgxNXY0SDIzLjhjLS45IDQuNi01IDgtOS44IDgiLz48cGF0aCBmaWxsPSIjZTkxZTYzIiBkPSJNMTQgMzdjLTIuMiAwLTQtMS44LTQtNHMxLjgtNCA0LTQgNCAxLjggNCA0LTEuOCA0LTQgNCIvPjxwYXRoIGZpbGw9IiMzNzQ3NGYiIGQ9Ik0yNSAxOWMtMi4yIDAtNC0xLjgtNC00czEuOC00IDQtNCA0IDEuOCA0IDQtMS44IDQtNCA0Ii8+PHBhdGggZmlsbD0iI2U5MWU2MyIgZD0ibTE1LjcgMzQtMy40LTIgNS45LTkuN2MtMi0xLjktMy4yLTQuNS0zLjItNy4zIDAtNS41IDQuNS0xMCAxMC0xMHMxMCA0LjUgMTAgMTBjMCAuOS0uMSAxLjctLjMgMi41bC0zLjktMWMuMS0uNS4yLTEgLjItMS41IDAtMy4zLTIuNy02LTYtNnMtNiAyLjctNiA2YzAgMi4xIDEuMSA0IDIuOSA1LjFsMS43IDF6Ii8+PC9zdmc+"},"displayName":"Webhook","typeVersion":2,"nodeCategories":[{"id":5,"name":"Development"},{"id":9,"name":"Core Nodes"}]},{"id":112,"icon":"fa:map-signs","name":"n8n-nodes-base.switch","codex":{"data":{"alias":["Router","If","Path","Filter","Condition","Logic","Branch","Case"],"resources":{"generic":[{"url":"https://n8n.io/blog/2021-the-year-to-automate-the-new-you-with-n8n/","icon":"☀️","label":"2021: The Year to Automate the New You with n8n"},{"url":"https://n8n.io/blog/how-to-get-started-with-crm-automation-and-no-code-workflow-ideas/","icon":"👥","label":"How to get started with CRM automation (with 3 no-code workflow ideas"},{"url":"https://n8n.io/blog/build-your-own-virtual-assistant-with-n8n-a-step-by-step-guide/","icon":"👦","label":"Build your own virtual assistant with n8n: A step by step guide"},{"url":"https://n8n.io/blog/automation-for-maintainers-of-open-source-projects/","icon":"🏷️","label":"How to automatically manage contributions to open-source projects"}],"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/core-nodes/n8n-nodes-base.switch/"}]},"categories":["Core Nodes"],"nodeVersion":"1.0","codexVersion":"1.0","subcategories":{"Core Nodes":["Flow"]}}},"group":"[\"transform\"]","defaults":{"name":"Switch","color":"#506000"},"iconData":{"icon":"map-signs","type":"icon"},"displayName":"Switch","typeVersion":3,"nodeCategories":[{"id":9,"name":"Core Nodes"}]},{"id":565,"icon":"fa:sticky-note","name":"n8n-nodes-base.stickyNote","codex":{"data":{"alias":["Comments","Notes","Sticky"],"categories":["Core Nodes"],"nodeVersion":"1.0","codexVersion":"1.0","subcategories":{"Core Nodes":["Helpers"]}}},"group":"[\"input\"]","defaults":{"name":"Sticky Note","color":"#FFD233"},"iconData":{"icon":"sticky-note","type":"icon"},"displayName":"Sticky Note","typeVersion":1,"nodeCategories":[{"id":9,"name":"Core Nodes"}]},{"id":1119,"icon":"fa:robot","name":"@n8n/n8n-nodes-langchain.agent","codex":{"data":{"alias":["LangChain","Chat","Conversational","Plan and Execute","ReAct","Tools"],"resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.agent/"}]},"categories":["AI","Langchain"],"subcategories":{"AI":["Agents","Root Nodes"]}}},"group":"[\"transform\"]","defaults":{"name":"AI Agent","color":"#404040"},"iconData":{"icon":"robot","type":"icon"},"displayName":"AI Agent","typeVersion":3,"nodeCategories":[{"id":25,"name":"AI"},{"id":26,"name":"Langchain"}]},{"id":1145,"icon":"file:anthropic.svg","name":"@n8n/n8n-nodes-langchain.lmChatAnthropic","codex":{"data":{"alias":["claude","sonnet","opus"],"resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatanthropic/"}]},"categories":["AI","Langchain"],"subcategories":{"AI":["Language Models","Root Nodes"],"Language Models":["Chat Models (Recommended)"]}}},"group":"[\"transform\"]","defaults":{"name":"Anthropic Chat Model"},"iconData":{"type":"file","fileBuffer":"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0NiIgaGVpZ2h0PSIzMiIgZmlsbD0ibm9uZSI+PHBhdGggZmlsbD0iIzdEN0Q4NyIgZD0iTTMyLjczIDBoLTYuOTQ1TDM4LjQ1IDMyaDYuOTQ1ek0xMi42NjUgMCAwIDMyaDcuMDgybDIuNTktNi43MmgxMy4yNWwyLjU5IDYuNzJoNy4wODJMMTkuOTI5IDB6bS0uNzAyIDE5LjMzNyA0LjMzNC0xMS4yNDYgNC4zMzQgMTEuMjQ2eiIvPjwvc3ZnPg=="},"displayName":"Anthropic Chat Model","typeVersion":1,"nodeCategories":[{"id":25,"name":"AI"},{"id":26,"name":"Langchain"}]},{"id":1179,"icon":"fa:code","name":"@n8n/n8n-nodes-langchain.outputParserStructured","codex":{"data":{"alias":["json","zod"],"resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.outputparserstructured/"}]},"categories":["AI","Langchain"],"subcategories":{"AI":["Output Parsers"]}}},"group":"[\"transform\"]","defaults":{"name":"Structured Output Parser"},"iconData":{"icon":"code","type":"icon"},"displayName":"Structured Output Parser","typeVersion":1,"nodeCategories":[{"id":25,"name":"AI"},{"id":26,"name":"Langchain"}]},{"id":1315,"icon":"fa:table","name":"n8n-nodes-base.dataTable","codex":{"data":{"alias":["data","table","knowledge","data table","table","sheet","database","data base","mysql","postgres","postgresql","airtable","supabase","noco","notion"],"details":"Data table","resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/core-nodes/n8n-nodes-base.datatable/"}]},"categories":["Core Nodes","Development"],"nodeVersion":"1.0","codexVersion":"1.0","subcategories":{"Core Nodes":["Helpers"]}}},"group":"[\"input\",\"transform\"]","defaults":{"name":"Data table"},"iconData":{"icon":"table","type":"icon"},"displayName":"Data table","typeVersion":1,"nodeCategories":[{"id":5,"name":"Development"},{"id":9,"name":"Core Nodes"}]}],"categories":[{"id":41,"name":"Ticket Management"},{"id":49,"name":"AI Summarization"}],"image":[]}}