n8n Automation Videos & Summaries

The best n8n YouTube tutorials, summarized. Learn workflows, integrations, and automation patterns from the top n8n creators — without watching every video. Updated daily as new tutorials drop.

48 video summaries • Updated daily • Last updated Apr 2, 2026

n8n is an open-source workflow automation tool that connects apps and services without code. It can run locally or self-hosted, giving you full control over your data. Popular use cases include AI agent builds, marketing automation, data pipelines, and connecting APIs. It's a free alternative to Zapier and Make with more flexibility.

Latest12:13~2 min readSave 10 min
Latest Summary

Build AI Chatbot in n8n Using Google AI Studio (Easy Guide)

12:132 min read10 min saved
Board InfinityBoard Infinity

Key Takeaways

Getting an API Key from Google AI Studio

  • Navigate to aistudio.google.com and sign in with your Google account.
  • On the bottom left, click on "Get API key".
  • Click "Create API key" on the top right.
  • You may need to create a new project or select an existing one. Give it a name (e.g., "automation").
  • A unique API key (a string of letters and numbers) will be generated. Copy this key. This is your "password" to access the models.
  • This process utilizes the free tier, so no payment is required initially.

Building the Chatbot in n8n

  • In n8n, click the "+" sign to add a new node.
  • Search for and select the "Basic LLM Chain" node.
  • This node includes a "Chat Trigger" and the LLM Chain itself.
  • To connect a model, click the "+" sign within the LLM Chain node's model section.
  • Choose "Gemini Chat Model" from the available options.
  • To authenticate, create a new credential:
    • Give the credential a name (e.g., "test webinar").
    • Leave the host as default.
    • Paste your copied API key from Google AI Studio into the "API key" field.
    • Click "Save". You should see "Connection tested successfully."
  • Select the desired Gemini model (e.g., "Gemini 2.5 Flash").

Interacting with the Chatbot

  • Click "Open chat" at the bottom of the n8n canvas.
  • A chat interface will appear. Type your messages and send them.
  • The messages will be processed by the Basic LLM Chain and sent to the Gemini model.
  • The model's responses will appear in the chat interface.
  • You can ask questions, request jokes, or ask for code snippets, and the chatbot will respond.
  • The chat interface allows for a conversational experience with the AI model.

Recent n8n Automation Videos

37 recent videos
👉 Automate Daily Standup with AI 🤖 | n8n AI Agent + Slack to Google Sheets9:48
official educationofficial education

👉 Automate Daily Standup with AI 🤖 | n8n AI Agent + Slack to Google Sheets

·9:48·8 min saved

Workflow Setup with n8n The video demonstrates how to automate daily stand-ups using an AI agent with n8n. It explains how to set up a workflow starting with a chat trigger to receive messages. An OpenAI node is integrated for data extraction and communication. Users can sign up for a 14-day free trial on n8n.com to create workflows. AI Agent Prompt and Data Extraction A system prompt is provided for the AI agent to extract specific data points for daily stand-ups. The required data includes Project Name, Task, Progress, Authentication Logic Completion, Blockers, and Next Steps/Status. The AI agent processes chat input to identify and structure this information. An example input is shown, and the AI successfully extracts details like "Project Name: ABC", "Task: Log in API", "Status: Delayed". Data Formatting and Google Sheets Integration A JavaScript code node is used to format the extracted data into a structured format. This formatted data is then saved to a Google Sheet named "Daily Standup AI Agent". Columns in the Google Sheet include Project Name, Task, Progress, Blockers, Next Step, Status, and Date. The workflow appends the processed data to the designated Google Sheet, ensuring all relevant details are logged. Slack Integration and Future Enhancements The video briefly mentions that Slack integration will be covered, allowing developers to submit updates via Slack commands. The creator plans future videos to cover more advanced AI agent functionalities, including creating Project Manager agents, uploading meeting notes, and managing timesheets through Slack commands. These future enhancements will include separate commands for tasks, timesheets, blockers, risks, sprint planning, resource creation, and user stories.

n8n Tutorial for Beginners 2026 | Build Your First AI Agent in 30 Minutes5:16
CogsworthCogsworth

n8n Tutorial for Beginners 2026 | Build Your First AI Agent in 30 Minutes

·5:16·3 min saved

Getting Started with n8n n8n allows businesses to automate tasks like answering customer emails and summarizing leads. It's presented as an alternative to Zapier and make.com, being open-source and flexible. n8n Cloud is recommended for beginners, offering a free tier and easy setup. A self-hosted option using a VPS (like Hetner) is available for technical users. Key n8n concepts: Nodes (actions/triggers), Workflows (automation canvas), Triggers (starting events). Building Your First AI Agent The tutorial focuses on building an AI agent to reply to customer emails. Step 1: Trigger Node - Use a Gmail trigger to detect new incoming emails. Step 2: AI Agent Node - Add an AI agent node connected to the Gmail trigger. Configure the AI agent to use OpenAI (GPT-4o or GPT-3.5 Turbo). A system prompt instructs the AI on its role and response format (e.g., friendly support, under 150 words). Map the email body from the Gmail trigger to the AI agent's user message field. Enhancing the AI Agent's Capabilities Memory: Add a "window buffer memory" sub-node (set to 10 messages) to allow the agent to remember conversation history. Tools: Integrate an "Send Email" node as a tool, enabling the AI to decide whether to send an email. Conditional Logic: Use an "If" node to create decision-making rules. Example: If the AI's output contains "refund," route it to a Slack notification for human review; otherwise, auto-send the email. This transforms the agent from a simple responder to a decision-maker. Deployment and Testing Test the entire workflow by sending test emails, including one with the keyword "refund," to verify correct routing. The video implies a final step for deployment and monitoring, though details are cut off. A free workflow template is available for download.

Destructuring the Bypass: How Hackers Evaded the n8n Security Patch (CVE-2026-25049) #cybersecurity6:27
CybertechCybertech

Destructuring the Bypass: How Hackers Evaded the n8n Security Patch (CVE-2026-25049) #cybersecurity

·6:27·4 min saved

Vulnerability Timeline and Scale Vulnerabilities disclosed on December 22nd. Publicly weaponized by December 25th ("NAN god mode explicit"). Attackers no longer require credentials by early January. Mitigation bypass (CVE-2026-25049) rendered patches useless by February 5th. Exploitation occurred over less than 2 months. Over 100,000 internet-facing n8n instances potentially vulnerable. Threat actors are actively scanning and exploiting these systems. Technical Breakdown of the Exploit Attack Flow: 1. Attacker gains access (low-level credentials or unauthenticated webhook). 2. Malicious JavaScript injected into a workflow node. 3. Expression escapes its sandbox, gaining direct access to the Node.js runtime. 4. Attackers execute arbitrary operating system commands with n8n process permissions. Root Cause: Improper sandboxing of the expression engine. The expression inherited the entire Node.js global context, allowing access to powerful objects like 'process' and 'require'. The boundary between configuration and executable code was erased. Impact of the Vulnerability Remote Code Execution (RCE): Attackers can run any command on the server. Confidentiality Breach: Sensitive data (API keys, credentials) can be exfiltrated. Integrity Compromise: Automation logic can be altered, leading to data corruption or sabotage. Availability Disruption: Critical workflows can be shut down, or the server taken offline. Mandatory Patch Directives and Mitigations Initial patches were superseded by the mitigation bypass (CVE-2026-25049). Required Action: Upgrade to n8n version 1.123.17 or 2.5.2 and newer. Older versions are considered vulnerable. Emergency Short-Term Mitigations (if patching is not immediate): Disable all public-facing webhooks and forms. Restrict workflow creation permissions to trusted admins. Run n8n as a non-root user with minimal privileges. Use network segmentation to isolate the n8n instance. These are stop-gap measures and do not eliminate the risk. Core Lessons and Future Directives Workflow automation engines blur the line between configuration and executable code. Trusting user-supplied expressions without a provably secure sandbox is a fatal architectural flaw. End-of-Life Warning: The n8n 1.x version branch is end-of-life and will not receive future security patches. Mandatory Migration: Organizations must migrate to the 2.x branch for ongoing security.

How to Build Your First AI Agent (Don't use n8n and Make) | Airia Review24:20
Joseph ChandlerJoseph Chandler

How to Build Your First AI Agent (Don't use n8n and Make) | Airia Review

·24:20·62 views·21 min saved

Introduction to Airia Airia is presented as a no-code AI agent builder that is both easy to use and powerful, contrasting with more complex or limited platforms like n8n and Make. The platform allows users to describe desired automations, and Airia will build them, or users can build them visually using a drag-and-drop interface. Airia is enterprise-first, focusing on security, data handling, and compliance, but is also accessible for solo users and small businesses. Key advantages highlighted are: model agnosticism (use any AI model), great integrations (especially Firecrawl and Apify via MCP servers), and an intuitive builder. A free tier is available, and a community feature offers over 3000 pre-built workflows. Airia Platform Overview The core workspace is the "studio" where automations are built and managed. Users can install and manage AI models, prompts, memories, knowledge graphs, and MCPs (Micro-service Components) which act like APIs to connect to external services. There are numerous pre-built prompts and over 531 MCPs available, including popular ones like Firecrawl and Apify. An "evaluations" feature is available for assessing large datasets. Agent executions and conversations can be monitored in a feed. Demo 1: Blog Article Writer This agent automates blog post creation, handling research, keyword identification, competitor analysis, fact verification, and human-like writing. The workflow uses GPT 4.5 for article planning, Gemini 2.5 Pro for SEO research and web scraping (using Firecrawl MCP), and Claude Opus 4.6 for writing. Variables are used to pass data between nodes, with "user input" for initial prompts and "step result" for outputs from previous nodes. The final output is saved to Notion via the Notion MCP. The agent can generate detailed, SEO-optimized articles (e.g., 2000 words) by taking a simple instruction and a URL. Demo 2: Competitor Website Teardown This agent analyzes a competitor's website, scraping content, checking pricing and reviews, and providing a strategic analysis. The workflow starts with scraping the website using Gemini 2.5 Pro and Firecrawl MCP. Tavily is used for internet research to find company name, competitor information, and pricing. Gemini 2.5 Pro generates a detailed teardown report (company overview, messaging, offer, design, positioning). GPT 4.5 creates an executive summary from the teardown report. The final report is saved to Notion. This agent can provide a comprehensive first pass analysis quickly, saving significant manual effort. Demo 3: Google Maps Lead Generator This agent generates leads for local businesses by searching Google Maps, scraping websites, scoring leads, and writing personalized cold outreach emails. It uses input variables for business type and city. Apify MCP is used for Google Maps searches, returning up to ten results. Firecrawl MCP, via Gemini 2.5 Pro, scrapes the websites of the found businesses. GPT 4.5 scores the leads based on scraped data and predefined criteria for outreach. Claude Opus 4.6 writes a customized cold outreach email for each lead. The results, including leads and personalized emails, are saved to Notion. This agent can be used to start a service business immediately, providing qualified leads and outreach content. Advanced Features and Conclusion Airia allows chaining AI models and offers various node types beyond AI models, including data sources and document creation. Flow control nodes enable features like markdown conversion, human approval steps, and conditional branching. AI agents are becoming the standard for business automation, and Airia provides a powerful, accessible platform to build them without code. The platform's robust security features make it suitable for enterprise use, while its ease of use benefits individual users and small businesses.

The n8n Feature That Finally Fixes Credential Setup5:40
Ryan & Matt Data ScienceRyan & Matt Data Science

The n8n Feature That Finally Fixes Credential Setup

·5:40·79 views·4 min saved

Introduction to n8n Quick Connect The n8n credential setup process used to be the most difficult part of building automations. n8n has released a new feature called "Quick Connect" that significantly simplifies credential setup. The presenter will demonstrate connecting to Slack, Google Calendar, and GitHub in under a minute each. Instructions are provided for cases where a service is not yet supported by Quick Connect. Prerequisites and Node Setup Ensure you are using n8n version 2.15 or later. Updates are available via the help section. To follow along, add the Slack, Google Calendar, and GitHub nodes (and triggers) to your workflow canvas. Slack Credential Setup with Quick Connect When setting up a new Slack credential within a node, click "Connect to Slack". A popup will appear allowing you to grant n8n access to your Slack workspace. After authorization, n8n Quick Connect creates the credential. Note: Quick Connect is not available for Slack triggers; manual setup is still required for those. Google Calendar Credential Setup with Quick Connect For Google Calendar, create a new credential and click "Sign in with Google". Choose your Google account and grant n8n permission to access your calendars. This process bypasses the need for manual scope configuration in Google Cloud. The calendar and associated data can then be selected within the node. GitHub Credential Setup with Quick Connect For GitHub, select "Connect to GitHub" instead of manual setup. You can choose to sign in with your username/email and password or use "Sign in with Google". Authorize n8n to access your GitHub account. A GitHub OAuth API credential is automatically created. Limitations and Future Potential Quick Connect is not yet available for all n8n nodes and triggers (e.g., Slack triggers). As of March 31st, the feature supports a limited number of nodes. The presenter anticipates this feature will be expanded to more services, as it removes a significant barrier to entry for n8n users.

n8n Tutorial for Beginners 2026 | Build Your AI Agent6:37
Maira Mentor Maira Mentor

n8n Tutorial for Beginners 2026 | Build Your AI Agent

·6:37·6 views·5 min saved

Why Automation is Crucial Automation is no longer a luxury but a necessity for business survival, especially for tasks that need to be done instantly, like delivering online course login details at 3:00 AM. Automated workflows run 24/7, eliminating the need for manual intervention and the associated costs and management headaches. Key benefits include automatically sending welcome emails, notifying teams of new orders, and generating invoices after payments. Introducing n8n n8n (pronounced "n-eight-n") acts as a universal translator and digital switchboard, enabling different applications (like Google Sheets, Gmail, Telegram, and AI tools) to communicate and work together in automated workflows. It can automate tasks for e-commerce stores (order notifications, invoicing, data entry) and service businesses (client onboarding, follow-up reminders). Getting Started with n8n Two setup options: self-hosting on a personal computer (complex, expensive, hard to maintain) or using a Virtual Private Server (VPS). A VPS is strongly recommended for beginners due to lower cost, simplicity, and ease of maintenance. Hostinger is highlighted as an easy VPS provider: select a plan (KVM2 recommended), duration, and choose to install n8n from their application list during server setup. Hostinger handles the technical setup, providing a personal n8n dashboard to build and run automations. Leveraging n8n Templates and AI n8n offers over 8,900 pre-built templates that can be quickly adapted for specific business needs, providing a significant head start. An example template uses AI (OpenAI) to act as a website consultant by analyzing a landing page URL and providing improvement tips. Understanding Costs and API Keys While the n8n platform itself is free, using third-party services (like OpenAI's AI) often requires an API key. Using these API keys may incur small costs, typically based on usage. The cost is presented as minimal compared to the potential savings from automating tasks that would otherwise require multiple employees. Users can customize workflows by adding other services (e.g., Razer Pay) beyond the provided templates. Key Takeaways Automation is essential for business viability. n8n is a powerful and accessible tool for automation. Using a Hostinger VPS is a beginner-friendly way to get started. Thousands of pre-built templates accelerate automation setup. Be aware of potential small API costs for advanced features, which offer significant value.

Build a Real n8n Workflow Step-by-Step | Production Automation + AI Integration 🚀7:08
Naveen Tech HubNaveen Tech Hub

Build a Real n8n Workflow Step-by-Step | Production Automation + AI Integration 🚀

·7:08·9 views·5 min saved

Core n8n Node Types Trigger Nodes: Initiate workflows based on events (e.g., new email, API call). Action Nodes: Perform tasks like sending messages, updating CRMs, or writing to databases. Logic and Utility Nodes: Manage data within the workflow, enabling data shaping, branching logic (if statements), and complex data flows without interacting with external apps. Production Workflow Architecture The workflow starts with a webhook trigger to receive external data. Immediate data validation is performed to ensure data quality and prevent errors ("garbage in, garbage out"). Invalid data is rejected with an error message. Data is then transformed and enriched. This includes: Using a 'Set' node for consistent formatting. Enriching data by calling internal APIs for additional information. Processing data with an AI model for advanced capabilities. Retrieval Augmented Generation (RAG): A more advanced technique where the workflow first retrieves relevant documents from a knowledge base (CRM, etc.) and provides this context to the AI. This grounds the AI's responses in factual information. Decision Making and Final Output An 'If' node is used to create branching logic based on AI processing results (e.g., flagging urgency). Results are stored permanently using a database node (e.g., PostgreSQL). A notification node (email, Slack) informs a human about the completion of the process. Production-Grade Error Handling Global Error Workflow: A dedicated, separate workflow that automatically runs when any other workflow fails. This error workflow can: Log detailed error information. Send notifications (e.g., Slack alerts). Attempt to automatically retry failed steps. Additional production-grade features include detailed logging, performance monitoring, and smart retry logic for unreliable APIs. Key Takeaways Building production-ready systems involves architecting for validation, processing, and robust error handling. Moving beyond basic connections to structured, reliable, and scalable systems is crucial. Integrating AI, especially with RAG, enables dynamic and intelligent automation that understands nuance and context.

How to Build AI Agents with n8n (Step-by-Step) | n8n Automation Tutorial 20266:49
AI With AzizAI With Aziz

How to Build AI Agents with n8n (Step-by-Step) | n8n Automation Tutorial 2026

·6:49·6 min saved

Setting Up n8n Sign up or log in to n8n. Create a new workflow. Configuring the AI Agent Add a trigger node. Select "On Chat Message". Add an "AI Agent" node. Chat Model: Choose an LLM model (e.g., OpenAI, Anthropic, Google). To use OpenAI, log in and get an API key from platform.openai.com. Add billing information and a minimum of $5 to your OpenAI account for the API key to work. Paste the API key into n8n. Select a specific OpenAI model (e.g., GPT-4 Turbo). Memory: Add a "Simple Memory" node. Keep default settings for now. Testing the AI Agent Click "Open Chat" to interact with your AI agent. Send a message (e.g., "Hi"). The AI agent should respond (e.g., "How can I help you?"). Future Enhancements The tutorial mentions the possibility of adding tools like calendars, calculators, and Google Sheets in future tutorials.

Master n8n in 2026: Core 70% You Need to Build AI Agents Tutorial15:01
itsmeedeepsitsmeedeeps

Master n8n in 2026: Core 70% You Need to Build AI Agents Tutorial

·15:01·11 views·12 min saved

Introduction to n8n and AI Agents n8n is a workflow automation tool that simplifies building multi-step AI agents. The tutorial covers the core 70% of n8n needed for full functionality. Getting Started with n8n Sign up for a 14-day free trial on n8n.io. The dashboard includes options for Workflows, Credentials, Execution, and Data Tables. Creating Your First AI Agent Workflow Trigger Node: Set the workflow to start with a 'Chat Message' trigger. AI Agent Node: Chat Model: Choose a model like Google Gemini. Requires an API key obtained from Google AI Studio. Memory: Use 'Simple Memory' to retain conversation context. Tool: Select n8n's 'Data Table' node to store information. Data Table Setup: Create a data table (e.g., 'Study Planner') with columns like Subject, Topic, Deadline, Hours, Status. Map columns in the n8n node to automatically select data. System Message (Prompt): In the AI Agent node, set a system message that instructs the AI on its task, e.g., inserting study details into the data table. Testing the Workflow: Send a chat message (e.g., "Need to study maths trigonometry lecture 2 and need 5 hours to complete it"). Observe the workflow execution and verify data insertion in the data table. Updating Data with Upsert Change the 'Insert' operation in the Data Table node to 'Upsert'. Define 'Must Match Condition' (e.g., Subject and Topic) to update existing rows instead of creating duplicates. Test by sending a message with updated information (e.g., changed hours). Expanding Functionality: Adding Tutorial Links Create a new data table ('Tutorials Link') with columns for Title, Type, URL, Description. Update the AI Agent's system message to instruct it to find and save tutorial links from specified sources (YouTube, articles). Test by asking for tutorials on a topic (e.g., "Can you get tutorials on n8n?"). Verify that tutorial information is added to the new data table. Test both study details and tutorial link functionality by clearing tables and sending relevant messages. Exploring Other n8n Nodes Scheduled Trigger: Set workflows to run on a schedule. Data Transformation (Edit Fields): Manipulate data formats, select specific fields, and combine data. Flow Control Nodes If Node: Simple split with one input and two paths. Switch Node: Multiple routes based on various conditions. Use to filter data based on criteria like month. Human Review Node Allows workflows to pause for human approval before executing critical actions. Setup: Use 'Chat Message' trigger with 'Response Mode' set to 'Use Response Nodes'. Add 'Human Review' node, select 'Chat' for response, and 'Approval' for response type. Configure approval options (Approve/Disapprove). Testing: Send a message, and the workflow will present approve/decline buttons.

This n8n automation generates AI music and automatically publishes it on social media11:38
The AI DoctorThe AI Doctor

This n8n automation generates AI music and automatically publishes it on social media

·11:38·46 views·10 min saved

Workflow Overview The n8n workflow automates AI music generation and social media publishing. It takes a brief description, keywords, style, mood, instruments, and duration (up to 5 minutes) as input. The system can create music with or without vocals and lyrics. The generated music is original and high-quality, comparable to studio productions. The MP3 music is then used to create a video with a thumbnail generated by Nanobana. The final video is automatically published to social media platforms like YouTube. Workflow Acquisition and Setup The workflow can be downloaded for free from n8n.vip by entering an email address to receive it via email in JSON format. An n8n server is required. Two methods for setting up an n8n server are presented: Official n8n website: Subscription-based, starting at $20/month, but limited to 5 simultaneous workflows. Hostinger VPS: Offers n8n with an unlimited number of workflows. Recommended plans are KVM2 (2 processors, 8GB RAM) or KVM4 (4 processors, 16GB RAM) for speed and performance. A coupon code "goN8N" is provided for discounts on Hostinger servers. A tip is given to select "N8N Plus without workflow" on Hostinger to get 100 pre-installed popular workflows for free. The downloaded JSON workflow file can be imported into the n8n server via the "Import from file" option. Execution and Publishing Process The workflow is run by submitting a description (e.g., "cinematic music," instrumental). The system generates a prompt for ElevenLabs to create the music. The generated MP3 music is saved. Nanobana is used to create a thumbnail image for the video. The music and image are merged into a video using Short-Stroke. The video is automatically published to YouTube (or up to nine other social networks). The entire process, from generation to publication, can take as little as 5 minutes (or the defined workflow interval). Example and Results An example of a children's birthday song generated and published is shown. A sample clip of the generated music is played. The published video is demonstrated on YouTube, showcasing the automated end-to-end process.

n8n Workflow Automation Intro Session 2 | Build Smart Workflows Without Coding55:24
GIGZPKGIGZPK

n8n Workflow Automation Intro Session 2 | Build Smart Workflows Without Coding

·55:24·17 views·51 min saved

Introduction to n8n and AI Workflow Automation The future of work is here, driven by AI and Large Language Models (LLMs). The key is not being replaced by AI, but by those who know how to use it effectively. AI advancements are happening at light speed, making continuous learning essential. The AI Revolution and Your Career Many fear being replaced by AI, but the reality is being replaced by those who leverage AI. The boom in AI, particularly LLMs, has rapidly changed industries. Companies and individuals who understand and adopt AI will have a significant advantage. Automation can save time and costs, making individuals and companies more competitive. Global clients highly value efficiency and time savings. Identifying Repetitive Tasks Many daily tasks, like data entry, manual copy-pasting, and sending repetitive emails, consume 30-40% of a workday. These repetitive tasks lead to exhaustion and reduced productivity, preventing focus on core responsibilities. By 2026, the workforce will likely be divided into those who manually perform tasks and those who leverage AI automation. The Power of Automation with n8n n8n is an open-source workflow automation tool that can streamline tasks. Automation follows a simple logic: Trigger, Logic, and Action. Trigger: An event occurs (e.g., receiving an email, a form submission, an order placed). Logic: A decision-making process based on the trigger (e.g., IF email is from CEO, THEN...). Action: The task performed based on the logic (e.g., update a spreadsheet, send a reply, post to Slack). Example: Automating abandoned cart follow-ups for e-commerce stores, offering discounts based on cart value. Benefits of Learning AI Automation Individuals who master AI automation can command premium rates and salaries. Automation skills make individuals more valuable and potentially irreplaceable. Freed-up time can be used for further upskilling and personal development. High demand for AI and automation skills exists in the global freelance market (e.g., Fiverr). Automating tasks can lead to significant cost savings for businesses, such as eliminating the need for manual data entry personnel. AI engineers with automation skills command higher salaries in Pakistan (starting from 50,000-60,000 PKR for probation, rising to 80,000-100,000 PKR). This skill set is highly beneficial for career switchers and fresh graduates. The n8n Course Structure The course is four weeks long with 20 live sessions (1 hour per day, 5 days a week). Focus areas include: Business Workflows, AI Integrations, and Advanced Deployment. Participants will build four running projects for their portfolios: Email Marketing Machine, Lead Management by Blind AI, Customer Support Bot, and AI Email Triage Agent. The course emphasizes hands-on building from day one. Benefits include: Ready-made templates, daily project focus, trainer support for error fixing, a community for accountability, lifetime access to templates and recordings, and a certificate of completion. Why This Course Over Free Resources? YouTube offers vast knowledge but also significant distractions. Following tutorials can be frustrating due to errors and lack of accountability. This course provides structured learning, ready-made templates, and direct support to overcome challenges. It focuses on building real, portfolio-ready projects. Who is This Course For? Individuals with zero coding experience. Those with repetitive daily tasks they want to eliminate. Freelancers looking to offer AI automation services for better income. Anyone wanting to add AI automation skills (with proof of work) to their CV. Individuals willing to invest time and effort in learning and building. Who This Course is NOT For: Those seeking shortcuts or unwilling to attend sessions consistently. Individuals who prefer only theory without practical implementation. Advanced developers seeking highly technical content. Course Details and Next Steps The course is taught by Sarim Zahid Saeed, an AI Engineer. The program includes 20 live sessions, 4 real portfolio projects, and lifetime access to resources. Questions are welcomed at the end of the session.

AI Automation Roadmap 2026 (Hindi) | n8n + API | Beginner to Pro7:14
GG AutomationGG Automation

AI Automation Roadmap 2026 (Hindi) | n8n + API | Beginner to Pro

·7:14·32 views·5 min saved

Introduction The video outlines an 8-phase roadmap to becoming an AI Automation Developer by 2026, regardless of prior programming knowledge. The focus is on practical skills and building, not just theoretical knowledge. Phase 1: Programming Language Start with Python due to its simple syntax and widespread use in automation tools. Learn JavaScript for web automation, as it's used within tools like n8n. Phase 2: Web and System Basics Understand the fundamental client-server request-response cycle of the web. Learn basic Linux command-line commands, as automation often runs on servers with terminals. Phase 3: APIs APIs are crucial for automation; without them, you're just a drag-and-drop user. Key concepts include: REST APIs, Webhooks, and Authentication (OAuth). Understand request methods: GET, POST, PUT. Phase 4: Databases For practical automation in 2026, start with Supabase (PostgreSQL-based, recommended for SQL basics) or Firebase (NoSQL). These tools offer quick setup, built-in APIs, and are relatively easy to learn. Phase 5: Automation Tools Zapier: Simple, drag-and-drop, 7000+ integrations, but can be expensive at scale. Make: More powerful than Zapier, better for complex workflows, affordable. n8n: The "end game," open-source, self-hostable, offers full control, allows custom code (JavaScript, Python), and direct API connections. This is the tool automation developers will use in 2026. Phase 6: n8n Deep Dive n8n works with nodes, where each node represents an action (e.g., sending an email, calling an API, checking a condition, using an LLM). Connecting these nodes and designing systems based on requirements makes you an automation developer. Phase 7: AI + Automation This is the future: AI agents intelligently analyze data, make decisions, and then take action. AI can automate complex tasks previously requiring human intervention, like customer support resolution. n8n has built-in AI nodes (like GPT) that can be integrated into workflows. Phase 8: Real Projects Build a portfolio with practical projects that solve real business problems: Lead Pipeline: Automate lead data entry into CRM based on AI assessment. Support Automation: AI reads and replies to customer emails, creating tickets if unresolved. Competitor Tracker: Monitor competitor websites for price drops and alert you. Invoice Reader: AI reads invoices to extract data for automatic file creation and entry.

প্রতিমাসে $1000-5000$ Income করতে এই 5 টি Ai Skill এখনই শিখুন8:52
Hablu ProgrammerHablu Programmer

প্রতিমাসে $1000-5000$ Income করতে এই 5 টি Ai Skill এখনই শিখুন

·8:52·4.4K views·6 min saved

AI-Powered Skills for Monthly Income The video outlines five AI skills that can generate $1000-$5000 monthly income through freelancing or starting an agency. These skills are born from the advancements in AI and offer new career opportunities. 1. AI Content Creation Encompasses more than just video; includes articles, thumbnails, scripts, social media captions, and email marketing content. AI tools simplify repetitive tasks like writing articles, generating captions, and creating scripts. Platforms and agencies focused on AI content creation are booming. Tools to use: ChatGPT, Gemini, Midjourney, or human-like AI. 2. AI Graphics Design AI can now generate logos, thumbnails, and other creative assets quickly and affordably. Previously, graphic design required hiring experts and significant time investment; AI allows for creation in minutes. Examples: Thumbnails for videos, social media posters, logos. Tools to use: Midjourney, Leonardo AI, Canva, Adobe Firefly, ChatGPT, Gemini. 3. AI Video Production Crucial for marketing and promotions for businesses of all sizes. AI enables video creation with cloned faces and voices, or even entirely unique generated faces. Production-grade videos can be created quickly. Tools to use: CapCut AI, RunwayML, Pictory, InVideo AI, VSpace, Sora. 4. AI Chatbot Development Automates customer support for businesses, answering product and pricing inquiries. Chatbots can interact with customers via voice, message, or call, assist with purchases, and even request courier services. This is a significant part of AI automation. 5. AI Automation & Agent Development The core behind all the previously mentioned AI skills. Encompasses automation for lead generation, customer support, voice, video, graphics, and more. Allows building agents for various tasks. Can automate an eight-hour workday into minutes. Learning AI automation inherently covers the other four skills. Course Offering A comprehensive course on AI Automation and Agent Development is available (Batch Six enrollment open). Features 2 months of training with 6 days/week classes (5 days recorded modules, 1 day live class). Includes 8-12 hours of daily live support for problem-solving. Offers lifetime support, guidance, and mentorship until income is generated. The course has been redesigned with the latest technologies like 'Ent Go High Level Open Cloud'. Contact the provided number for course details. Conclusion Learning an AI-related skill is crucial for career rebuilding in the AI era by 2026. AI Automation is presented as the most comprehensive skill, covering the others. Encourages taking a decisive step to learn and start earning.

N8N   All About Dashboard And Canvas14:34
First Step AiFirst Step Ai

N8N All About Dashboard And Canvas

·14:34·26 views·12 min saved

Dashboard Overview The dashboard is the first screen you see after logging in. If you're a new user, it will be empty until you create workflows. Home Button (N8N logo): Navigates you back to your dashboard from anywhere. Personal Folder: Allows you to organize your workflows into different folders. Overview: Provides a summary of workflow executions, including total, failed, and failure rate. It displays all workflows together, unlike the Personal folder which is for individual organization. Navigation and Settings Admin Panel: Accessible from the bottom left. Templates: Pre-built workflows (use cases) that you can adapt with your credentials and settings. Help: Access to support resources. Settings: Crucial for verifying your name, email, and especially your time zone to ensure scheduled triggers function correctly. Top Bar Elements Workflows: A central place to view all created workflows. Credentials: Stores saved connections (APIs) to external services like Gmail, Google Sheets, etc. APIs act as keys to authorize actions. Execution: Displays logs and results of workflow runs. Variables (Pro Plan): Acts like sticky notes for workflow-related information or instructions. Data Tables: A feature for later exploration. The Canvas Create Workflow Button: Located in the top left, clicking this initiates the canvas interface. Canvas: The main workspace where you build your workflows by connecting nodes. Editor Panel: The area where you actively edit and connect nodes. Execution Panel: Shows a summary table of executed actions within the workflow. Canvas Controls: Use two fingers to pan the canvas (move left, right, up, down). Zoom in (+) and zoom out (-) buttons to adjust view. Brush Button: Cleans up and rearranges nodes for better visual organization. Zoom to Fit: Fits the entire workflow onto the screen. Sticky Notes: Can be attached to workflows for reminders or instructions. Nodes and Execution Plus Button (+): Opens a sidebar to add new nodes. Triggers: The starting point of a workflow, initiating an action (e.g., On Submission, Webhook, Manually). Adding a Trigger Node: Clicking the plus button and selecting a trigger (e.g., "Trigger Manually") adds the node to the canvas. Executing a Node: You can execute individual nodes to test functionality. A green checkmark indicates successful execution. Node Interaction: Click and drag to move nodes. Right-click for options: Rename, Replace, Duplicate, Deactivate, Delete. Adding Different Nodes: You can easily delete a node and add a different one (e.g., changing from "Trigger Manually" to "On Chat Message"). Execution Logs: Records of workflow executions are stored in the Execution panel. Workflow Naming and Best Practices Importance of Naming: Avoid generic names like "Workflow 1." Give workflows descriptive names so you can easily identify their purpose. Renaming Workflow: Click on the workflow title area to rename it (e.g., "My First Basic Agent - March 30 2026"). Saving: Changes are saved automatically.

Connect Google to n8n the RIGHT Way (Most Beginners Get This Wrong)9:07
Smart AI WorkspaceSmart AI Workspace

Connect Google to n8n the RIGHT Way (Most Beginners Get This Wrong)

·9:07·2 views·7 min saved

Google Cloud Project Setup To connect Google services to n8n, you first need to create a project in Google Cloud. Navigate to "API & Services" and then "OAuth consent screen" to begin setting up credentials. Create a new project (e.g., "demo") and select it. OAuth Client Creation Under "OAuth consent screen," click "Create client ID" or "Create OAuth Client". Name the client (e.g., "demo") and select your support email. For application type, choose "Web application". Crucially, add the n8n redirect URI by clicking "Click to copy" in n8n and pasting it into the Google Cloud console. Upon creation, you will receive a Client ID and Client Secret. These will be reused for all Google applications. Connecting n8n Nodes Google Drive: Create a new credential, paste the copied Client ID and Client Secret. Add your email as a test user and save. You can then create folders, for example. Gmail: Use the same Client ID and Client Secret. Sign in, grant necessary permissions (read, send, draft messages), and save. You can then send test emails. Google Sheets: The credential setup is identical using the Client ID and Secret. However, you must first enable the "Google Sheets API" within your Google Cloud project. Google Calendar: Similar credential setup. You also need to enable the "Google Calendar API" in your Google Cloud project. Key Takeaways This setup process, including creating the Google Cloud project and obtaining the Client ID/Secret, is a one-time setup. The same set of OAuth credentials (Client ID and Client Secret) can be reused for multiple Google services (Drive, Gmail, Sheets, Calendar, etc.). Always remember to enable the specific API (e.g., Google Sheets API, Google Calendar API) for the service you intend to use within your Google Cloud project. Test the connection live within n8n before building complex workflows.

PYS25 - Automating myself out of an unloved project with Python, n8n and Te... - Sebastian Witkowski29:37
Fundacja Academic PartnersFundacja Academic Partners

PYS25 - Automating myself out of an unloved project with Python, n8n and Te... - Sebastian Witkowski

·29:37·27 min saved

Project Genesis and Initial Challenges The speaker's initial side project was a set of Python scripts for TradingView to automate the drawing of "harmonic patterns" for technical analysis in day trading. The dream was to create a software that could be sold infinitely with minimal ongoing work. The project faced significant challenges: Constant influx of emails with questions, requests for free access, and feature suggestions. Dealing with chargebacks and fraud (e.g., stolen credit cards). Requests for direct financial advice, which the speaker tried to dissuade users from. Losing interest in the project as it was no longer used by the speaker. Attempting to sell the project failed due to its niche technology (Pinescript), proprietary platform (TradingView), and target audience. Automation Strategy with Python and n8n The solution was to automate the project using Python and n8n (a no-code/low-code automation tool). The primary goals were to automate: Granting script access upon payment. Revoking access upon subscription cancellation. Providing 7-day trial access. Granting Access: Gumroad payments trigger a webhook to n8n. n8n executes Python scripts using the puppeteer library (via pyppeteer) to control a browser. The Python script logs into TradingView, checks user access, and grants access until a specific date or permanently. A CLI interface was added to the Python scripts for easier execution within n8n. Trial Access: Initially, a trial form collected usernames, stored in Airtable. This was replaced with Jotform to prevent duplicate submissions and validate input. New entries in Jotform triggered an n8n workflow to grant 7-day trial access. Revoking Access: Gumroad webhooks only work for new purchases, not cancellations. Instead of complex API integration, a Telegram bot was used. Users could message the bot to revoke access, which then executed the Python CLI script. This was prioritized as less urgent than granting access. Technical Implementation and Deployment n8n Setup: Hosted on a low-cost VPS using Docker Compose. Caddy was used as a reverse proxy for automatic SSL certificate management. Custom Docker Image: A custom Docker image was created for n8n to include necessary Python packages (like puppeteer and chromium). GitLab CI was used to automate the building and storage of this Docker image. Automated Deployment: Watchtower was implemented to automatically pull new Docker image versions and restart containers, ensuring the deployed version was always up-to-date. Notifications: Telegram was used for sending notifications at each step of the n8n workflow to monitor progress and identify failures. Lessons Learned and Project Philosophy Building and maintaining side projects is hard work; passion can fade. Setting boundaries with customers is crucial to avoid burnout. Implementing small obstacles (like a trial form) can filter out less serious users. Automation is key for maintaining projects you no longer actively use but still have customers for. The choice of automation tool (n8n, Zapier, Make) is less important than getting started and potentially switching later. The automated project requires minimal maintenance, with the speaker spending only about an hour per year on it.

n8n Tutorial for Beginners 2026  | Build Your AI Agent9:45
Saddam KassimSaddam Kassim

n8n Tutorial for Beginners 2026 | Build Your AI Agent

·9:45·6.9K views·7 min saved

Introduction to Automation and n8n Automation is crucial for business survival; without it, businesses risk failure. The speaker uses n8n to automate online course sales, sending login details within 5 seconds of enrollment, 24/7. Automation involves setting logic once, allowing systems to work autonomously. Examples of automation include sending emails upon form submission, notifying teams of new orders, and generating invoices for new payments. What is n8n? n8n is a workflow automation platform for visually building workflows. It allows integration of custom code when needed. n8n connects apps, tools, and services, enabling them to communicate automatically. It can integrate services like Google Sheets, Gmail, Telegram, and CRMs within a single workflow. n8n can be self-hosted on a user's own server. Real-World Use Cases of n8n E-commerce: Automatically send messages to a team group, generate invoices, notify customers, and log order details in Google Sheets upon a new order. Client Onboarding: Automatically send onboarding emails, assign tasks to the team, and schedule reminders after a client fills out a form. Setting up n8n with Hostinger Two primary setup methods: buying and installing on a separate computer (complex, expensive) or using a Hostinger VPS plan (cheaper, easier). Hostinger is recommended for its beginner-friendly interface and affordability. A special link (saddam.kasim.com/hostinger) and coupon code (SK10) offer discounts. The KVM2 VPS plan is recommended for its balance of CPU, RAM, and bandwidth. A 12-month billing period is suggested for cost-effectiveness. Purchasing includes a free domain. After payment and account creation, log in to the Hostinger account. Navigate to the VPS menu and select "Manage." During VPS setup, choose "Applications" and select "n8n" as the application. The VPS setup process takes up to 10 minutes. Access n8n by clicking "Manage App" on the VPS overview. n8n Account and License Create a free n8n account with email, name, and password. Answer a few questions about your company and how you heard about n8n. Send for a free license key to your email. Activate the license key by clicking the provided link in the email. Using n8n Templates and Building Workflows n8n offers thousands of pre-built workflow templates. Templates can be imported and customized, saving the need to build from scratch. Example template: "Generate AI Viral Videos with VDub and Upload to TikTok" (can be adapted for Instagram). Another template: "Chat with a Database using AI." Template: "Analyze Landing Page with OpenAI and Get Optimization Tips." To use a template, click "Use For Free," then "Import Template to n8n." The imported workflow appears on the n8n visual editor. Integrating OpenAI API Workflows often require API keys for external services like OpenAI. To add an API key, double-click the node, go to "Setup Credentials," and input the key. Generate an OpenAI API key by creating an account on the OpenAI platform. OpenAI API keys are not free and require payment or credit card details. While n8n automates tasks, some integrated services incur costs. Adding More Nodes and Conclusion Additional nodes (e.g., for payment gateways like Razorpay) can be added by clicking the plus icon. n8n on Hostinger is presented as an easy and cost-effective way to automate business processes. A single n8n workflow can potentially perform the work of many employees. The video concludes by reiterating the benefits of n8n for business automation and provides a discount link for the Hostinger VPS.

👉 AI Project Manager 🤖 Auto Generate Requirement Docs | n8n AI Agent Tutorial8:49
official educationofficial education

👉 AI Project Manager 🤖 Auto Generate Requirement Docs | n8n AI Agent Tutorial

·8:49·4 views·7 min saved

Project Overview and Goal The video demonstrates how to build an AI Project Manager agent using n8n. The agent's primary function is to automatically generate requirement documents, project scopes, and proposals from an uploaded Statement of Work (SOW) PDF. The generated data will be saved to Google Docs and Google Sheets. Workflow Setup in n8n SOW Form: An upload form is created to accept the SOW PDF document. Binary Conversion: The uploaded PDF is converted to binary data. LLM Integration: The binary data is sent to an LLM (Large Language Model) for analysis. Prompt Engineering: A specific prompt is used to instruct the AI Project Manager to analyze the SOW and generate output in a structured format. Output Parsing: An output parser is configured to extract specific information required for the project documentation. Information Extracted by the AI Project Name Requirement Documents Project Overview Functional Requirements Non-functional Requirements Project Scope (In-scope and Out-of-scope) Milestones and Timelines Deliverables Sprint Backlog (Task ID, Description, Priority) User Stories (Name, Role, Action, Benefits) Resources (Human and Technical) Risks Dependencies Data Storage and Organization Google Docs: The generated requirement documents are saved in Google Docs. A specific folder structure is used, with a folder named "Project" containing subfolders named after the project title. Google Sheets: Various project-related data, including project name, SOW name, last updated date, links to requirement documents, and user stories, are saved in a master Google Sheet. Sheet Creation: Separate sheets are created for different aspects like Project Name and User Story, and another for Project Name and Resource details. Example and Output Demonstration A sample SOW for a "Challan Settlement System" project is uploaded. The AI generates a comprehensive document including: Project Overview Requirement Documents Functional and Non-functional Requirements Project Scope Milestones with weekly breakdowns (e.g., 8-week completion) Initialized Sprint Backlog items User Stories Resource allocation (Technical) Risks and Dependencies The final deliverables are saved in Google Sheets. Next Steps and Resources The JavaScript file for the workflow will be provided in the description. The next video will focus on generating user stories and resources in more detail. Viewers are encouraged to like the video and subscribe to the channel for related content.

n8n API Authentication Explained: Keys, OAuth & Basics5:22
Stephanie NyarkoStephanie Nyarko

n8n API Authentication Explained: Keys, OAuth & Basics

·5:22·30 views·4 min saved

Introduction to n8n API Authentication APIs are how external applications communicate with n8n. Authentication is crucial for verifying identity when connecting to external systems. Types of API Authentication in n8n Basic Authentication: Requires only a username and password. Simplest form, best suited for internal or legacy systems due to security considerations. API Keys: Most common and easiest to implement. Requires a single key provided by the service (e.g., Gemini, OpenWeather, Stripe). Can be pasted directly or sometimes formatted as "Authorization: Bearer YOUR_API_KEY". OAuth 2.0: Used for large platforms like Google Drive, Gmail, Slack, Notion. Involves Client ID and Client Secret for secure token exchange. Allows for a one-time login and grants access for a duration. n8n handles the OAuth handshake process automatically. Best Practices for API Authentication Always check the API documentation of the external service. Look specifically for the "authentication" or "authorization" section. Understanding the required authentication method is essential for successful API integration.

Is n8n DEAD in 2026? (HONEST REALITY)9:36
The AI Growth Lab with TomThe AI Growth Lab with Tom

Is n8n DEAD in 2026? (HONEST REALITY)

·9:36·759 views·7 min saved

AI Automation Landscape and N8N's Position Despite the rise of AI tools like Claude Code, Claude Co-work, and OpenClaw, which can build automations without manual node configuration, N8N remains relevant. The perception of N8N being "dead" is fueled by trending AI coding tools dominating YouTube content and search interest. The video's goal is to help non-technical professionals use automation to become irreplaceable, a perspective that highlights N8N's continued value. N8N's Unique Advantages Visual Logic: N8N's visual interface allows anyone to understand workflow logic, similar to reading a map, without needing to understand code. This is contrasted with Claude Code, where logic is hidden in the code. Team Maintainability: N8N workflows can be maintained by team members without requiring specialized developers, as the visual nature makes it easy to understand and modify. This prevents common issues where automations become unmanageable if the original creator leaves. Troubleshooting: N8N provides clear execution logs, showing exactly which node failed and where data went wrong, enabling quick diagnosis. Code-based automations often have complex error logs that are difficult for non-developers to interpret. Reliable Scheduled Operations: N8N is built for consistent background tasks like lead generation, follow-up sequences, and report generation, which require minimal human intervention. Case Study: Cal Huitt's Success with N8N Cal Huitt, a non-technical professional in commercial construction, used N8N to automate a service request process that previously took 30-45 minutes per request. His N8N workflow, incorporating AI for categorization and contractor matching, reduced processing time to seconds. The visual nature of N8N allowed Cal to easily present the system to non-technical company board members, demonstrating the process step-by-step. This success transformed Cal from a regular employee to an indispensable asset to his company, leading to more project opportunities. N8N's Growth and Integration N8N is being used by large companies for critical operations and is not in direct competition with tools like Claude Code; they are often used together. Claude Code can be used to build N8N workflows, indicating synergy rather than direct opposition. The "N8N is dead" narrative is perpetuated for clicks, while in reality, these tools are complementary. Self-Hosting N8N for Enterprise Value N8N's self-hosting capability is appealing to enterprise-level companies, offering more control and cost-effectiveness compared to cloud-based solutions. Self-hosting on a VPS (e.g., Hostinger) provides unlimited workflows and executions at a lower cost than N8N Cloud plans, with full data control. The video promotes Hostinger's VPS plans, offering a one-click N8N install and a discount code. Conclusion on N8N's Future While Claude Code is excellent for custom software and complex AI agents, N8N excels at connecting systems, running scheduled tasks, and ensuring team-wide understanding and maintenance. Individuals building critical systems and aiming to become irreplaceable are actively using N8N. The video offers resources for learning AI automation and joining a program to become an "AI Operator."

Build Your AI Email Assistant -Beginner Friendly n8n Tutorial in Tamil21:45
skill Radarskill Radar

Build Your AI Email Assistant -Beginner Friendly n8n Tutorial in Tamil

·21:45·15 views·20 min saved

Workflow Overview Build a free AI workflow using n8n to analyze incoming emails. The workflow categorizes emails (e.g., quotation, job offer, internship inquiry). Categorized email data is updated in a Google Sheet for easy response management. This automates the process of tracking and responding to emails, preventing missed opportunities. Workflow Components and Setup Trigger: Uses an "On Message Received" Gmail trigger node to detect new emails. AI Analysis: Passes email content to an OpenAI "Message Model" node (using GPT-4) for analysis. Data Structuring: A JavaScript node structures the AI's output for better readability. Data Storage: Appends the categorized data to a Google Sheet using the "Append Row" node. Google API and Credentials Setup Requires setting up Google Cloud Platform credentials to access Gmail and Google Sheets APIs. Steps include: Creating a new project in Google Cloud Console (e.g., "n8n Skill Radar"). Enabling the Gmail API and Google Sheets API for the project. Configuring the OAuth consent screen with application name and user email. Creating an OAuth client ID (type: Web application) and setting the authorized redirect URI. Obtaining the Client ID and Client Secret from Google Cloud. Publishing the app on the Google Cloud console ("Publish app" -> "Confirm"). Connecting these credentials within n8n for both Gmail and Google Sheets nodes. AI Prompt Engineering System Prompt: Instructs the AI to act as an email classification assistant, analyzing email metadata (from, subject, snippet, date). User Prompt: Provides the actual email data (from, subject, date, snippet) to the AI for classification. The AI's output includes a categorized field. Google Sheet Integration Create a Google Sheet with columns: Sender, Subject, Message, Date, Category. In n8n, use the "Append Row" node for Google Sheets. Map the data from the previous nodes (Sender, Subject, Message, Date, Category) to the corresponding columns in the Google Sheet. Workflow Execution and Automation Once set up, the workflow can be executed manually or will run automatically when new emails arrive. The AI analyzes the email, categorizes it, and the details are added to the Google Sheet. The workflow can be published for continuous, automated operation. Future enhancements mentioned include triggering actions for work-related emails (e.g., WhatsApp/Telegram notifications).

Build 3 Real Automations with Gmail, Sheets & AI Agents in n8n 🤯47:14
Tech JashwanthTech Jashwanth

Build 3 Real Automations with Gmail, Sheets & AI Agents in n8n 🤯

·47:14·1.2K views·43 min saved

Introduction to n8n n8n is an automation platform that allows integration with AI agents. It enables users to create and integrate automation flows without needing dedicated personnel for tasks. The video aims to provide a beginner-friendly explanation of n8n and how to build automations. n8n offers over 500 integrations, including Gmail, Slack, Telegram, Teams, and Google Docs. Users can start with a 14-day free trial. Workflow 1: Daily News Aggregator Goal: Fetch news from an aggregator and email it daily at 6 AM. Trigger: Scheduled trigger set for daily at 6 AM. News API Integration: Used `api.newsapi.org` to get an API key. Integrated an HTTP request node to fetch news articles. The API provides endpoints for discovering articles and getting top headlines. Data Processing: A "Split Out" node was used to separate individual articles from the API response. A "Limit" node was used to select only the top 10 articles. A custom JavaScript node was used to combine the selected articles into a single string for the email body. Email Notification: A Gmail "Send Email" node was configured to send the compiled news articles to the user's inbox. The email content was formatted using HTML. Execution and Publishing: The workflow can be executed manually, and once published, it runs automatically on the set schedule. The video demonstrates unpinning and repinning data, and re-executing the workflow. Workflow 2: Form Submission to Google Sheets Goal: Automatically insert user details submitted via a form into a Google Sheet. Trigger: "On Form Submission" trigger using n8n's built-in form generator. Form Creation: Users can create custom forms with fields like email, text area for questions, and name. Fields can be marked as required. Google Sheets Integration: A Google Sheets node was used with the "Append Row" operation. The user's Google account needs to be connected to n8n. Permissions for Google Drive access are required. A new spreadsheet ("User Inquiry Questions") and a sheet ("Questions from User") are created automatically if they don't exist. The form fields (email, question, name) are mapped to the respective columns in the Google Sheet. Email Confirmation: An optional Gmail "Send Email" node can be added to send a confirmation email to the user who submitted the form, using their provided email address. Workflow 3: AI Agent as a Team Lead Goal: Create an AI agent that acts as a project team lead, answering questions based on project context. Trigger: "On Form Submission" trigger to capture user questions. AI Agent Setup: An AI Agent node is used. System Message: A prompt is defined for the AI agent, instructing it to act as a project owner and provide context about the project (purpose, features, etc.). Chat Model: Gemini API was used for the AI model. A Gemini API key can be obtained from Google AI Studio. Memory: A "Simple Memory" node is included to allow the AI agent to remember previous interactions within the session. Response Handling: The AI agent's response to the user's question is captured. A Gmail "Send Email" node is used to send the AI agent's answer back to the user who submitted the question. Demonstration: The video shows the AI agent answering a question about the project's purpose, demonstrating its ability to use the provided context. General n8n Features and Conclusion The video covers various nodes like Schedule Trigger, HTTP Request, Split Out, Limit, Code in JavaScript, and Send Email. Users can pin data for easier re-use within a workflow. The "Zoom to Fit" option helps visualize the entire workflow. The "Executions" tab shows the history of workflow runs. Workflows need to be published to run automatically on a schedule. The platform has a limit on executions within the free trial period. The video concludes by encouraging viewers to practice and build more automations, highlighting the demand for these skills.

Stop Working Manually | Start Automation | n8n Part 1 #ai  #aivideo18:07
Praxia SkillPraxia Skill

Stop Working Manually | Start Automation | n8n Part 1 #ai #aivideo

·18:07·57 views·16 min saved

Deployment Options VPS: Best option for data privacy. Cloud: Good for unlimited resources and concurrent executions, but requires sharing files. Desktop: Ideal for testing and practicing workflows before moving them to VPS or cloud. Key Concepts and Terminology Encrypted Storage of API Keys: API keys are confidential identifiers allowing apps to communicate. Treat them as more important than passwords. Access Tokens (OAuth Tokens): More secure than API keys, used for authorization. All these fall under "credentials" for platforms like Facebook, Instagram, WhatsApp, Google. Publicly Hosted: Refers to files or data that are accessible online, a requirement for some N8N operations. Core N8N Nodes Trigger Nodes: Webhooks: Initiates workflows based on external events. Schedules: Runs automations at a set time or interval (e.g., daily at 3 PM). App Events: Triggers workflows based on specific actions within an app (e.g., updating a row in Google Sheets). Logic Nodes: If Node: Allows workflows to choose different paths based on conditions (yes/no). Merge Node: Combines outputs from multiple nodes into a single output, useful for things like carousel posts. Function Node: Executes code (Python or JSON). JSON is a simpler, human-readable format. Custom GPTs can assist in generating JSON code. Integration Nodes: Direct connections to apps like WhatsApp, Telegram, Gmail, and weather services. HTTP Node: The most powerful node, used to connect to any service that doesn't have a direct integration with N8N, filling the gap for applications like WhatsApp and Instagram historically. Real-Life Applications The video aims to demonstrate creating real-life automations, including: A WhatsApp bot for business inquiries, sales, data analysis, and appointments. Scheduling Instagram posts. These automations utilize the discussed nodes and concepts.

How to Access n8n Workflow11:56
Board InfinityBoard Infinity

How to Access n8n Workflow

·11:56·3 views·10 min saved

Accessing n8n There are two primary ways to access n8n: local installation or using n8n Cloud. For beginners, n8n Cloud is recommended. Access it by going to n8n.io. New users can start a 14-day free trial by signing up with their name, email, and creating an account name. If you have already installed n8n locally, you can use your local version for the workshop. n8n vs. Low-Code/No-Code n8n is different from "low-code" or "no-code" platforms. Low-code platforms are for specific coding tasks where you want the system to write code for you or provide inspiration. n8n is designed for building systems, where careful design and planning (like flowcharts) are beneficial, especially for complex systems. Simple tasks can be done with drag-and-drop. n8n Cloud vs. Local/Docker n8n Cloud has a few more nodes compared to local or Docker installations. n8n Cloud is a paid service. Deploying and managing processes might be slightly easier in the cloud version. Local/Docker installations might require more effort for "always-on" functionalities. n8n Capabilities n8n can be used to build full systems, simple web apps, and automate processes. It's not primarily designed for building traditional websites but can be used for web applications or temporary servers that process data (e.g., extracting information from images). Understanding webhooks and APIs can expand its capabilities significantly. Understanding the n8n Interface After logging in, you'll see your workflows. Initially, this area will be blank. A "workflow" is a small process within n8n. Everything you do will be inside a workflow. To start building, click the "Create workflow" button. This action opens a blank canvas, which is the main area where you'll add and connect nodes to build your automation.

This Free Tool Replaced My $120/Month Software – n8n 20267:44
AI Zero to MasteryAI Zero to Mastery

This Free Tool Replaced My $120/Month Software – n8n 2026

·7:44·3 views·6 min saved

Introduction to n8n n8n is an open-source workflow automation tool offering a free self-hosting option. It provides a significant cost advantage over paid alternatives like Zapier, with cloud plans starting at $20/month compared to Zapier's $120/month. While Zapier is easier for beginners, n8n offers greater flexibility, power, and customizability (e.g., JavaScript nodes, self-hosting for privacy). Key n8n Workflows and Use Cases AI Email Responder: Automates email categorization and personalized replies, saving 5-8 hours weekly; clients pay $500-$800. Lead Generation Pipeline: Scrapes Google Sheets, enriches data via Hunter.io API, and pushes verified contacts to HubSpot CRM; clients pay $1000-$1500 monthly. Automated Content Posting: Pulls RSS feeds, uses AI to draft LinkedIn posts, and schedules them via the LinkedIn API; clients pay $800-$2200 monthly. Stripe Payment Alerts: Sends Slack messages with customer details upon new Stripe payments; takes 8 minutes to build and is often included as a bonus. n8n AI Agent Capabilities n8n's 2026 update includes native AI agent nodes, allowing for autonomous agents within workflows. These agents can be given goals and connected to tools (web search, calculator, calendar) to determine their own steps. This capability is highlighted as an area where competitors like Make.com and Zapier are still catching up. Freelancing and Business Opportunities with n8n Freelancers can charge $500-$2000 per workflow build, plus $200-$500 monthly for maintenance. With 3-5 clients and minimal tool cost, monthly revenue of $3000-$8000 is achievable within 90 days. A successful pitch involves offering a free audit, demonstrating a pre-built n8n workflow, and quoting around $750 for the build. n8n is ideal for freelancers selling automation, small businesses automating internal processes, and developers seeking control and privacy. n8n Limitations Self-hosted n8n requires server management, posing a barrier for non-technical users. The free cloud tier is limited (5 workflows, 200 executions/month). Community-only support is available for the free plan. The UI has a steeper learning curve than Zapier for absolute beginners. Competitive Landscape and Action Plan n8n's closest competitor is Make.com (formerly Integromat), with a beginner-friendly interface but lacking n8n's self-hosting and advanced AI agent features. 7-Day Action Plan: Day 1: Install n8n locally. Days 2-3: Build email autoresponder. Days 4-5: Build lead-to-CRM pipeline. Day 6: Post service on Upwork. Day 7: Send LinkedIn outreach messages.

How I reduce n8n workflows failures to 010:19
CEO Automates | Real Business CasesCEO Automates | Real Business Cases

How I reduce n8n workflows failures to 0

·10:19·35 views·8 min saved

Workflow Structure and Sub-Workflows Prototyping vs. Production: Initial workflows are often messy and unstructured, making them hard to maintain. Production workflows are highly structured for reliability and ease of navigation. Sub-workflow for Reusability: Create separate sub-workflows for functionalities used multiple times across different projects or within a single project (e.g., voice recognition, image recognition). Parameterization: Sub-workflows should accept various parameters to handle different scenarios (e.g., video, voice, image recognition). They should output necessary parameters for reuse. Consolidated Messaging: Organize all messaging logic (internal or user-facing) into a single sub-workflow. This sub-workflow can handle different message types (regular, callback, edit, delete, download file) by accepting parameters like environment, chat ID, message content, and message type. Reliability and Error Handling Backup Services: Utilize multiple LLMs (e.g., OpenAI, Claude, Gemini) for critical tasks like image recognition. If one fails, another can be used, ensuring a result is obtained. Error Notifications: Implement mechanisms to send error messages to users or administrators if a major issue occurs. Logging and Data Management Log Everything: Log every action, especially when sending messages to users. This provides a detailed history for troubleshooting and understanding past events. Structured Logging: For messaging, use a switch node within the sub-workflow to handle different message types, logging each to a database like Supabase. Internationalization (i18n) Translation Table: Store translations in a Supabase table with a key, default text, and columns for different languages. Translation Node: Create a dedicated node that takes a language and a key as input. It normalizes the language code, retrieves the relevant text from the database, and falls back to the default text if a specific language translation is missing. Code vs. LLMs Prioritize Code for Calculations: For tasks like aggregation, calculation, or summation, use code instead of LLMs. Code is more reliable, faster, and consistent, saving on LLM tokens. LLMs can be unreliable for mathematical operations.

N8N Tutorial- Build A Simple Weather Automation Workflow8:32
Heart DiaryHeart Diary

N8N Tutorial- Build A Simple Weather Automation Workflow

·8:32·20 views·8 min saved

Workflow Setup Start by creating a new workflow in n8n. Choose to build the workflow manually. Schedule Trigger Add the Schedule Trigger as the first step. Configure the schedule (e.g., daily at 6 AM). Execute the node to see the output. OpenWeatherMap Integration Search for and add the OpenWeatherMap node. Create an account on the OpenWeatherMap website. Navigate to API keys and generate a new API key. Copy the generated API key. In n8n, set up the OpenWeatherMap credential by pasting the API key as the access token. Select the desired city and operation (e.g., get current weather). Execute the OpenWeatherMap node to fetch weather data. Telegram Notification Search for and add the Telegram node. Set the action to Send Message. Set up the Telegram credential using your Telegram access token. Input your Telegram Chat ID. Compose the message content, mapping data from the OpenWeatherMap output (temperature, humidity, description, etc.) to the message fields. Turn off the "Append n8n Attribution" setting to remove watermarks. Execute the Telegram node. Check your Telegram for the weather update message.

Building a Conditional Gmail Trigger Workflow in n8n21:27
Vinicius Coutinho | AI AutomationVinicius Coutinho | AI Automation

Building a Conditional Gmail Trigger Workflow in n8n

·21:27·103 views·18 min saved

Introduction to the Workflow The video demonstrates building a conditional Gmail trigger workflow in n8n for inventory management. The goal is to automatically respond to supply chain emails by identifying materials below safe stock levels. Workflow Overview The workflow starts with an email trigger from a specific Gmail account and subject line. It then reads data from a Google Sheet containing inventory information. A filter identifies materials where the current quantity is less than the safe stock (marked as "critical"). This filtered data is converted into a file (e.g., Excel). Finally, the workflow replies to the original triggering email with the generated file attached. Setting up the n8n Workflow Gmail Trigger: Add a "Gmail" node. Select "On Message Received" as the trigger event. Create or select a Gmail credential. Set the mode to "Every minute". Disable the "Simplify" option to access all email data. Configure a filter for the "Sender" email address. Conditional Logic (If Node): Add an "If" node. Set a condition to check if the email "Subject" is exactly "critical stock level". This ensures only relevant emails trigger the subsequent steps. Google Sheets Integration: Connect the "true" branch of the "If" node to a "Google Sheets" node. Select the "Get Rows" operation. Choose the correct Google Sheet document and sheet name (e.g., "material inventory", "sheet one"). (Optional) Configure credentials for Google Sheets. Filtering Critical Stock: Add a "Filter" node after the Google Sheets node. Set a condition to filter rows where the "Status" column is exactly "critical". This isolates the materials needing immediate attention. File Conversion: Add a "Convert File" node. This node automatically converts the filtered data into a downloadable file format. Replying to Email: Add another "Gmail" node. Select the "Reply to Message" operation. Use the "Thread ID" from the original Gmail trigger node for the "Message ID". Set the email "Type" to "Text" for simple formatting. Craft the reply message content, including a placeholder for the attachment. Disable "Append Attribution" to remove the n8n signature. Add an attachment using the output from the "Convert File" node. Ensure the "Attachment Fields Name" matches the data field name from the "Convert File" node (default is "data"). Testing and Publishing Execute nodes individually to test each step. Send a test email that matches the trigger criteria to verify the workflow. Review the received reply email and the attached file. Publish the workflow to make it active and fully automated. n8n Cloud and Docker Options The tutorial uses the n8n cloud version, offering a free trial. Mention of creating an n8n account and installing n8n locally via Docker as alternative options.

Advanced n8n Workflows: The Ultimate Zapier Alternative for 20268:31
How to DigitalHow to Digital

Advanced n8n Workflows: The Ultimate Zapier Alternative for 2026

·8:31·25 views·7 min saved

Getting Started with n8n Sign up for n8n using your company email, then verify with a code sent to your inbox. Complete account creation by adding your name, password, and account name. Start a 14-day free trial and answer onboarding questions about company size, team, comfort level with tasks, and how you heard about n8n. Why n8n is a Zapier Alternative n8n offers full customization, self-hosting options, and advanced logic, unlike Zapier's limitations. It allows you to build entire logic systems, moving beyond basic app connections to "big boy workflows." Advanced Workflow Logic in n8n n8n enables control over logic, not just connecting steps. Workflows can include if conditions, split workflows (multiple paths in one map), and looping through data. These features allow automations to make decisions, similar to programming without extensive coding. Webhooks and Triggers Webhooks are essential for real automations, allowing external applications to trigger workflows instantly. An example includes using a Google Sheet submission as a trigger for an n8n automation. Connecting documents within n8n can act as a webhook for AI automation, creating dynamic, real-time workflows. Integrating AI with n8n n8n can connect with various AI tools for content generation, data analysis, and user responses. Available AI integrations include AI agent, Anthropic, Google Gemini, Guardrails, and OpenAI. Specific AI actions include messaging models, classifying text, analyzing/generating/editing images, and generating audio. This makes automations intelligent and proactive. API Integrations and Workflow Building n8n provides unlimited API integrations, allowing connection to virtually anything. Even without built-in integrations, you can send requests, receive data, and process it, removing limitations. A typical workflow involves setting up a webhook trigger, using JavaScript for data transformation, calling an AI (like Gemini) for analysis, and then sending an email. Executing and Scaling Workflows Workflows can be executed directly within n8n. The platform includes error handling with specific error nodes and retry logic. Workflows can be scaled by duplicating and modifying them. Common mistakes to avoid include overcomplicating workflows and skipping testing.

How to Save WhatsApp Leads to Google Sheets using n8n9:49
Tech AreaTech Area

How to Save WhatsApp Leads to Google Sheets using n8n

·9:49·11 views·9 min saved

Introduction to Automating WhatsApp Leads This video demonstrates how to automatically save WhatsApp leads to a Google Sheet using n8n. Setting up n8n The tutorial focuses on creating a workflow in n8n, a free and open-source automation tool. Connecting WhatsApp to n8n It explains how to integrate WhatsApp with n8n, likely through a webhook or API connection. Utilizing Google Sheets The process involves setting up a Google Sheet to store the lead information. n8n will be configured to write new WhatsApp leads directly into this Google Sheet. Workflow Configuration The video provides a step-by-step guide on building the n8n workflow. This includes defining the trigger (e.g., receiving a new message on WhatsApp) and the action (saving data to Google Sheets). Data Mapping Instructions are given on how to map specific information from WhatsApp messages (like name, phone number, or inquiry details) to the columns in the Google Sheet. Benefits of Automation Automating this process saves time and reduces manual data entry errors. It ensures leads are captured and organized efficiently for follow-up.

n8n Tutorial for Beginners | Build Your First Workflow FREE (Step-by-Step)7:44
IT4Nextgen - Business AutomationIT4Nextgen - Business Automation

n8n Tutorial for Beginners | Build Your First Workflow FREE (Step-by-Step)

·7:44·15 views·6 min saved

Introduction to Automation and n8n Automation enables tasks to happen automatically, saving time, reducing errors, and allowing focus on important work. n8n is a flexible, powerful tool for creating automations by connecting different applications. It can be self-hosted for free. Key n8n Concepts Workflow: A sequence of steps representing the entire automated process. Node: An individual step within a workflow. Trigger: The event that initiates a workflow (e.g., new email, form submission). Web hook: A mechanism for sending data from one app to another instantly. Action: A task performed by a node (e.g., send email, save data). Connection: Links between nodes that define the workflow's sequence. API (Application Programming Interface): A method for applications to communicate with each other; n8n handles API interactions. Building Your First n8n Workflow The n8n interface includes a canvas for building workflows and nodes representing steps. Start a new workflow by clicking "New Workflow". Add a Web hook node as the trigger. Set the method to "GET" and configure a URL (e.g., "test-email"). Click "Listen for test event" to make n8n wait for data. Copy the provided URL and open it in a new tab to send test data. A successful trigger will turn the web hook node green. Add a Gmail node to perform an action. Connect it to the web hook node. Configure the Gmail node to send an email: enter recipient email, subject (e.g., "Test Automation"), and message (e.g., "This is an automated email from n8n"). To test, click "Execute Workflow". Send test data to the web hook URL again. The data will be captured, and the email will be sent. To make the workflow run in real-time, publish it.

Master n8n Automation in 1 Hour — Build a Real AI Agent Step-by-Step1:01:22
ocatechocatech

Master n8n Automation in 1 Hour — Build a Real AI Agent Step-by-Step

·1:01:22·28 views·58 min saved

Introduction to n8n n8n is a free, open-source automation tool that can be self-hosted or used via their cloud service. It's suitable for beginners and allows users to build automated workflows powered by AI. Project Overview: Automated Quiz System The goal is to automate a process where users take an Excel beginner pre-test hosted on Netlify. Upon submission, quiz results are sent to a Google Sheet. Both the student and the instructor receive email notifications with the results and relevant details. Getting Started with n8n Cloud Version: Sign up via n8n.io for a free 14-day trial using a Google account. Local Installation: Using npm: `npm install -g n8n` for global installation, or `npm install n8n` within a project directory. Launch locally by typing `n8n` in the terminal. It runs on `localhost:5678`. Using Docker: Follow instructions in n8n documentation for Docker installation. Building the Workflow: Step-by-Step Workflow Canvas: The interface where automation workflows are built. Workflows can be renamed. Triggers: The starting point of a workflow. Options include manual, on app event, on schedule, on webhook call, and on form submission. Webhook Trigger: Used for this project to receive data from the Netlify quiz form. Data Mapping with Edit Fields: Used to structure and summarize data received from the webhook. Expressions and JavaScript ternary operations can be used for conditional logic (e.g., determining skill level feedback). Google Sheets Integration: Appends submitted data to a Google Sheet. Requires authentication with a Google account. Data fields from the webhook output are mapped to Google Sheet columns. Email Notifications (Gmail): Nodes for sending emails to both the instructor and the student. Requires Gmail authentication. Emails can be customized with student details, scores, feedback, and AI-generated insights. Option to remove the default "Sent with n8n" attribution. AI Agent for Feedback: Uses the Groq AI model (free tier available with API key). AI generates personalized feedback based on student's skill level and quiz answers. System prompts guide the AI to provide specific feedback. AI feedback is integrated into the student's email notification. Responding to Webhook: A "Respond to Webhook" node is used to send a success message back to the front-end after the workflow completes, replacing the default "workflow started" message. Deployment Frontend Deployment: The quiz frontend is deployed to Netlify by dragging and dropping the project folder. Webhook URL Configuration: The webhook URL in n8n needs to be updated from the test URL to the production URL for live deployment. A conditional check (isDev flag) handles switching between test and production URLs. CORS Error Handling: Cross-Origin Resource Sharing (CORS) errors are resolved by configuring the webhook node in n8n to allow access from the Netlify URL. Publishing the Workflow: The n8n workflow must be published for changes to take effect live. Final Testing and Results After deployment and configuration, the entire workflow is tested live. Results are verified in the Google Sheet, student emails (including AI feedback), and instructor emails. The AI feedback becomes more personalized by including the student's answers in the prompt.

I Turned a Normal Website into an AI MACHINE using n8n (Age 8 🤯)35:41
Najifa's n8n AutomationNajifa's n8n Automation

I Turned a Normal Website into an AI MACHINE using n8n (Age 8 🤯)

·35:41·6 views·35 min saved

AI Workflow Setup with n8n The video demonstrates creating an automation workflow using n8n. n8n is presented as a powerful tool for automating various tasks. A free trial of n8n is available for 14 days. Website Creation with Zai.AI Zai.AI is used to create a simple HTML student registration form (name, age, class). The tool generates HTML code for the form. The generated HTML code can be hosted on platforms like Hostinger. Connecting Website to n8n A webhook URL from n8n is needed to connect the website. The HTML code needs to be modified to include a "fetch" option to send data to the webhook URL. The webhook should be configured to use the POST method. Integrating with Google Sheets The workflow aims to append submitted form data to a Google Sheet. This requires setting up a Google Sheets node in n8n and configuring credentials (client ID and client secret). For free usage, signing in with Google is suggested for credential setup. Workflow Execution and Publishing The automation can be tested by submitting the form after executing the workflow in n8n. For the automation to work without manual execution, the workflow needs to be published. Once published, submitting the form directly will trigger the automation and send data to Google Sheets. A JSON file containing the workflow setup is available in the video description for import.

How to Make Money with n8n | The 2026 Guide to Passive Income via Hostinger VPS8:51
Site StartersSite Starters

How to Make Money with n8n | The 2026 Guide to Passive Income via Hostinger VPS

·8:51·2.6K views·5 min saved

` for topic headings and `` for bullet points. The summary must be under 3000 characters and cover the entire video. No preamble or markdown code fences should be used in the output. Plan: 1. Identify key themes and topics in the video. 2. Extract specific claims, techniques, and insights related to making money with n8n and Hostinger VPS. 3. Group these points under relevant `` headings. 4. Format the summary using `` and `` tags. 5. Ensure the total character count is below 3000. 6. Review for adherence to all rules (HTML only, specific tags, no markdown, content coverage, character limit). Topics identified: - Problem/Solution Framing - Finding Opportunities - The Role of n8n - Importance of a VPS (Hostinger) - Example Workflows - Building a Professional Presence (Website) Drafting content for each section: Finding Monetizable n8n Opportunities Most n8n users build random workflows instead of solving real business problems. Successful users identify manual business processes and build automations around them. Look for "friction" – any instance where information needs manual transfer (e.g., slow lead responses, data entry). Spot opportunities by observing manual tasks on company websites, job postings, or social media. Reach out to businesses by pointing out a specific manual bottleneck you can fix. Propose a simple, tangible solution (e.g., instant email response to form submissions). Show a working demo to make the value proposition concrete. Leveraging n8n and a VPS for Reliability n8n's cost-effectiveness is key; running it on your own VPS avoids per-run charges that can escalate with high-volume workflows. Running n8n on a local computer is unreliable as it stops when the computer is off or loses internet. A VPS (like Hostinger's with an n8n template) ensures workflows run consistently 24/7. VPS offers stability, consistency, and eliminates the need for constant monitoring of your local machine. Features like snapshot rollbacks on VPS help quickly fix errors without extensive troubleshooting. Speed and reliability are enhanced, allowing for instant responses and logged actions. Separation from your personal computer means automations run independently, providing true passive operation. Profitable n8n Workflow Examples Instant Lead Responder: Automate immediate email responses to form submissions and Slack/WhatsApp notifications for businesses, capturing leads while they are engaged. Automated Content Creation: Create workflows that turn voice notes or short videos into text, split into multiple social media posts, saving businesses content creation time. Focus on Selling the Result: Emphasize the business outcomes (more leads, better attention) rather than just the automation itself. Building Credibility with a Website Create a professional website to showcase your n8n automation services. Potential clients will research you; a dedicated site builds trust and credibility. Use Hostinger's website builder (including AI tools) for a quick, professional online presence. The site should clearly explain your offerings, provide examples, and include contact information. Consider selling n8n templates or pre-built workflows directly on your site. Integrate your website with your automations for a seamless client experience (e.g., instant form responses). Review and Character Count: Combine these sections and check the character count. Need to be concise. Let's refine and condense. Monetizing n8n: From Problem to Profit Identify Friction: Focus on manual business processes (e.g., slow lead follow-ups, data entry) as automation opportunities. Targeted Outreach: Point out specific bottlenecks to businesses and offer simple, demonstrable solutions. Show, Don't Just Tell: Build basic working demos (like instant email replies) to prove value. Reliable Automation with n8n on a VPS Cost Efficiency: Run n8n on a VPS (e.g., Hostinger) to avoid per-run costs and maximize profit margins. 24/7 Uptime: A VPS ensures workflows run continuously, unlike local machine setups that require constant attention. Consistency & Speed: Achieve reliable, instantaneous task execution crucial for business processes. Simplified Management: Benefit from features like snapshot rollbacks for quick error correction. True Passive Income: Automations operate independently, freeing you from manual oversight. High-Value n8n Workflow Ideas Instant Lead Response: Automate immediate email acknowledgments and business notifications for new leads. Automated Content Generation: Convert audio/video inputs into shareable social media posts. Sell Outcomes: Market the benefits (faster leads, increased engagement) not just the automation tool. Establishing Your Brand Online Professional Website: Build a site to showcase services, case studies, and build client trust. Integrated Solution: Use Hostinger for both VPS hosting and website creation. Direct Sales: Offer pre-built workflows or templates for direct purchase. Character count check. This looks good. Approximately 1500 characters. Final check against rules: - HTML format: Yes - ``, ``, ``, `` tags only: Yes - Max 3000 chars: Yes - Covers beginning, middle, end: Yes - Grouped by topics: Yes - No preamble/markdown: Yes - Raw HTML output: Yes - English: Yes Looks ready.

Can Claude Code Build Real n8n Workflows? I Tested It in a $10K Hackathon27:07
Maksims SicsMaksims Sics

Can Claude Code Build Real n8n Workflows? I Tested It in a $10K Hackathon

·27:07·87 views·24 min saved

Claude Code & n8n Workflow Development The author used Claude Code with n8n MCP and n8n Skills, highlighting that the Skills are crucial for Claude to understand n8n logic and connect nodes. Firecrawl was used to help Claude scrape documentation, particularly for Cleo, a legal AI software/CRM. Claude Code was prompted to read Cleo's API documentation, saving the author the effort of manual review. The initial prompt to Claude was to "build the automation for me" from scratch, providing all relevant files and MCPs. Claude generated an initial n8n scenario, which required significant rework. Claude helped with text extraction using Mistral OCR and suggested using HTTP requests. The automation included calculating statute of limitations dates, handling season-dependent links, and setting Cleo matter IDs. Claude attempted to fix issues by modifying specific nodes, but sometimes the root cause was in a previous node, requiring the human to act as an orchestrator. The author found that Claude sometimes misses the overall picture, needing prompts to "check the whole scenario" to find better solutions. Claude struggled with updating the statute of limitations date, initially suggesting incorrect API endpoints and field names. It took many iterations and user guidance for Claude to discover that the limitation date was a task, not a matter field, and to construct the correct HTTP request. Claude's "planning mode" helped in outlining steps before drafting. Challenges and Limitations Encountered Claude mixed up information due to the large context, including documentation and reports. A critical error involved Claude trying to use a non-existent API endpoint for document automation orders. The author encountered issues with EU vs. US free trial differences, where the EU account lacked the necessary document automation feature, and Claude incorrectly stated it would be available. Claude sometimes focused on fixing a specific node when the actual error originated in a preceding node. The author had to act as an orchestrator, guiding Claude and verifying its work, as Claude doesn't always "see the big picture." Claude's context window limitations sometimes required conversation compaction, leading to lost conversational history. Claude sometimes generated irrelevant nodes or missed crucial ones in the automation. The author experienced "API error rate limit reached" issues, costing significant money on the pro plan. A workaround for the API rate limit involved switching between Claude models (e.g., Sonnet to Opus and back). The author chose Sonnet 1 million context window over Opus for cost efficiency, despite potential limitations. Final Thoughts and Recommendations Building a fully functional, error-free automation took 24 hours of work with Claude Code, not a quick process. Claude Code and n8n are not a replacement for human expertise; they are tools to assist. Claude can build the general logic but misses crucial details, requiring human oversight. Claude's ability to read documentation and interact with the n8n instance is highly valuable. Users should use Claude Code as an advantage but not substitute their own critical thinking and orchestration. The winning solution built a VAB interface (frontend) for report uploading and review, which was not a stated requirement but likely contributed to their win. The author debated building the frontend but chose to focus on the explicit requirements, which cost them in the competition. Claude Code is a powerful assistant but still requires the user to be the "brain" and "orchestrator" of the workflow.

Build Your FIRST WhatsApp AI Agent with n8n (Full Course)29:10
WsCube TechWsCube Tech

Build Your FIRST WhatsApp AI Agent with n8n (Full Course)

·29:10·14.7K views·25 min saved

Introduction to WhatsApp AI Agent Automation` `` `The video demonstrates how to build a WhatsApp AI agent using n8n automation. ` `All tools used in the tutorial are free, though n8n has a 14-day trial period. ` `` `Setting Up the n8n Workflow` `` `Start by logging into n8n and creating a new workflow. ` `Use the "AI Agent" node, which includes Chat Model, Memory, and Tool components. ` `` `Integrating Gemini Chat Model` `` `Connect to the Gemini chat model for free API access and efficient execution. ` `Generate an API key from Google AI Studio by creating a new key for "WhatsApp". ` `Add the Gemini API key as a credential in n8n. ` `` `Implementing Memory for Context` `` `The AI agent initially lacks memory, meaning it doesn't recall past conversations. ` `Add a "Simple Memory" node and set the context window length (e.g., 10 messages) to enable the AI to remember previous interactions. ` `Test by providing a name and then asking the AI to recall it. ` `` `Adding Tools for Data Integration (Google Sheets)` `` `Tools allow the AI agent to interact with external data sources like Google Sheets. ` `Connect your Google account to n8n. ` `Course List Integration:` `` `Add a Google Sheets node to fetch a list of courses. ` `Configure it to get rows from a "Courses" sheet. ` `` ` ` `FAQ Integration:` `` `Add another Google Sheets node for FAQs, configured to use an "FAQ" sheet. ` `` ` ` `Inquiry Submission:` `` `Add a Google Sheets node configured to "Append Row" to an "Inquiry" sheet. ` `Map user input (like name, course interest) to specific columns in the sheet. ` `Use a date/time session code for the date column. ` `` ` ` `Test by asking for the course list and then inquiring about a specific course. The details should be appended to the Google Sheet. ` `` `Defining AI Agent Rules and System Messages` `` `To prevent the AI from going off-topic or answering unhandled queries, define rules. ` `Create a document with specific rules and paste it into the "System Message" of the AI Agent node. ` `This ensures the AI only responds within the defined parameters. ` `` `Integrating WhatsApp Business Cloud API` `` `Add a "WhatsApp Business Cloud" node as a trigger for incoming messages. ` `Generate App Credentials:` `` `Go to business.facebook.com and log in. ` `Navigate to Business Manager settings, then Accounts -> Apps. ` `Create a new App ID (e.g., "Courses Attend"). ` `Obtain the App ID and App Secret from the app settings. ` `Add these as credentials in the n8n WhatsApp node. ` `` ` ` `Configure Send Message Node:` `` `Add another WhatsApp Business node for sending messages. ` `Set up credentials using an Access Token and Business Account ID. ` `Generate the Access Token from the Meta developer dashboard (WhatsApp -> Integration -> API Setup). ` `Verify your phone number with Meta to get the test number and eventually use your official number. ` `Map the output from the AI Agent node (the response) to the "Body" of the WhatsApp send message node. ` `` ` ` `Connect the "On Message" trigger to the AI Agent node, and the AI Agent node to the "Send Message" node. ` `` `Testing the Full Workflow` `` `Send a message to your WhatsApp number linked to the API. ` `The AI should respond with a greeting and options (e.g., "Course Info", "FAQ"). ` `Requesting "Course Info" should trigger the Google Sheets lookup, providing the list of courses and seat availability. ` `Inquiring about a specific course should prompt for details, which will then be saved to the "Inquiry" Google Sheet. ` `` `Conclusion` `` `The tutorial successfully demonstrates building a functional WhatsApp AI agent that can interact with users, retrieve information from Google Sheets, and submit inquiries. ` ``

How to Get n8n for FREE Lifetime (No VPS Required!)8:47
TechCraft AcademyTechCraft Academy

How to Get n8n for FREE Lifetime (No VPS Required!)

·8:47·95 views·7 min saved

Docker Installation and Setup Search for and download Docker Desktop from the official Docker website. Install Docker Desktop on your operating system (Windows, Mac, or Linux). Accept terms and conditions and log in with your Docker account. If you encounter WSL errors, use the provided command in PowerShell to fix them. n8n Installation and Access In Docker Desktop's search bar, find and pull the latest version of n8n.io. Once pulled, run the n8n container. Configure the host port to 5678 (or as specified). Access n8n by clicking the provided link, which will open it on localhost in your browser. Free Lifetime License Activation Create a new owner account for n8n within the local instance. Look for the "Get Paid Features for Free Forever" option. Enter your Gmail address and click "Send me a free license key." Retrieve the license key from your email and click "Activate License Key." The license will be activated for your local n8n instance. Limitations of the Free Method This method hosts n8n locally, meaning it's only accessible from your own PC. The n8n instance will only work while Docker Desktop and the n8n container are running. All workflows will be lost if Docker Desktop is closed or the container is removed. To ensure 24/7 uptime for workflows, your computer must remain on and connected. This free method is suitable for learning and personal use, not for business applications requiring constant availability. Future Video Possibilities A future video will cover how to make a locally hosted n8n accessible from other devices or via a domain. For business use or guaranteed uptime, purchasing a VPS is recommended. A discount link for VPS purchase (Stingray) is mentioned in the video description.

Popular All-Time

10 all-time favorites
From Zero to Your First AI Agent in 25 Minutes (No Coding)25:58
FuturepediaFuturepedia

From Zero to Your First AI Agent in 25 Minutes (No Coding)

·25:58·3.4M views·24 min saved

What is an AI Agent? An AI agent is a system that can reason, plan, and take actions based on given information. It differs from automation, which follows predefined, static steps. Agents are dynamic and capable of reasoning. Key components: Brain (LLM), Memory (past interactions/context), and Tools (external interactions). Components of an AI Agent Brain: The large language model (e.g., ChatGPT, Claude, Gemini) that handles reasoning and language generation. Memory: Allows the agent to remember past interactions and use context for better decisions. Tools: Enable interaction with the outside world (data retrieval, action execution, orchestration). Examples include Gmail, Google Sheets, APIs. Building Your First AI Agent (No-Code) The video uses the platform NADN for building agents visually without coding. NADN has a dedicated AI agent node that integrates the Brain, Memory, and Tools. A practical example involves building a personalized trail running recommendation agent. Agent Development Steps Trigger: Set up a schedule (e.g., daily at 5 AM) to run the agent. AI Agent Node: Add the core agent node. Brain Setup: Connect an LLM (e.g., OpenAI's GPT-4 Mini) by adding API keys. Memory Setup: Configure memory for context (e.g., remember last 5 messages). Tools Integration: Connect Google Calendar to check schedule. Connect OpenWeatherMap API for weather data. Connect Google Sheets for trail information. Connect Gmail to send recommendations. Use HTTP requests for custom APIs (e.g., AirNow.gov for air quality). Prompt Engineering: Define the agent's role, task, available inputs, tools, constraints, and desired output using a structured prompt. APIs and HTTP Requests API (Application Programming Interface): How software systems communicate and share information (like a vending machine interface). HTTP Request: The actual action of interacting with an API (e.g., GET to retrieve data, POST to send data). NADN simplifies tool integration, but custom tools can be built using HTTP requests to any public API. Testing and Refinement Test the workflow to identify and fix errors. Use ChatGPT to help debug errors by providing screenshots and explanations. Refine prompts and tool configurations for desired output and functionality. The agent can be tested via chat interface within NADN or through integrated communication channels.

You NEED to Use n8n RIGHT NOW!! (Free, Local, Private)26:36
NetworkChuckNetworkChuck

You NEED to Use n8n RIGHT NOW!! (Free, Local, Private)

·26:36·2.4M views·26 min saved

Summary unavailable

Build & Sell n8n AI Agents (8+ Hour Course, No Code)8:26:39
Nate Herk | AI AutomationNate Herk | AI Automation

Build & Sell n8n AI Agents (8+ Hour Course, No Code)

·8:26:39·1.6M views·503 min saved

Course Structure and Foundations The course covers the opportunity in AI agents, foundational n8n setup, UI familiarization, and step-by-step workflow builds. Topics include APIs, HTTP requests, AI agent tools, memory, multi-agent architectures, prompting, webhooks, self-hosting n8n, and lessons learned from building AI agents. Understanding AI Agents vs. Workflows AI Agents: Possess a 'brain' (LLM + memory) and instructions (system prompt) to make autonomous decisions and act using tools. Suitable for non-deterministic or unpredictable processes. AI Workflows: Follow predefined, linear steps with integrated tools. More reliable, cost-efficient, easier to debug, and scalable for deterministic processes. The course emphasizes building workflows before agents ("crawl, walk, run"). Getting Started with n8n Sign up for a free 14-day trial of n8n. Familiarize with the n8n dashboard: overview, projects, credentials, and admin panel. Understand workflow triggers (manual, scheduled, webhooks, etc.) and nodes (actions, data transformation, AI). Learn about JSON data format and its importance in n8n and LLMs. Difference between active and inactive workflows. Understanding data types: string, number, boolean, array, object. Building AI Workflows (Step-by-Step Examples) RAG Pipeline and Chatbot: Integrates Google Drive, Pine Cone (vector database), and Open Router (for various LLMs) to create a retrieval-augmented generation system. Customer Support Workflow: Uses Gmail triggers, text classification (AI node) to route emails, and an AI agent with a Pine Cone knowledge base to draft and send automated email responses. LinkedIn Content Creation: Automates content generation by using Google Sheets for topics, Tavi (web search API) for research, an AI agent for writing posts, and updating the Google Sheet with the results. Invoice Processing Workflow: Uses Google Drive triggers, PDF text extraction, an AI information extractor for specific fields (invoice number, client details, dates, amount), updates a Google Sheet database, and crafts/sends emails to a billing team using AI. APIs and HTTP Requests APIs (Application Programming Interfaces) allow systems to communicate. Native integrations in n8n are essentially pre-configured HTTP requests. Use HTTP Request nodes when a native integration is unavailable. Key components of API documentation and HTTP requests: Method (GET, POST), Endpoint (URL), Query Parameters, Header Parameters (for authorization/API keys), and Body Parameters (data sent in the request). Emphasis on using `curl` commands to import API configurations into n8n for ease of setup. Demonstrates setting up HTTP requests for Perplexity (web search), Firecrawl (web scraping/data extraction), and Apify (web scraping marketplace). Explains common HTTP error codes (400, 401, 404, 500) and how to debug them. Covers setting up API keys as generic credentials in n8n for reusability. Demonstrates creating images with OpenAI's DALL-E API and videos with Runway's API by handling binary data and base64 encoding. Agentic Frameworks and Prompting Workflows vs. Agents: Reinforces that workflows are for deterministic tasks, while agents are for non-deterministic tasks requiring decision-making. Agent Components: Input, Agent (LLM + Memory), Tools, System Prompt (Instructions). Multi-Agent Systems: Discusses orchestrator/sub-agent architecture for complex tasks, allowing specialization and reusability. Frameworks include prompt chaining, routing, parallelization, and evaluator-optimizer loops. Prompting Methodology: Emphasizes reactive prompting (start small, observe errors, fix incrementally) over proactive prompting (writing a large prompt upfront). Key Prompt Components: Overview (Role/Purpose), Tools (Description & When to Use), Rules/Instructions, Examples (for correcting errors), Final Notes. Memory Management: Simple memory vs. external databases (Postgres via Superbase) for storing conversation history. Session IDs are crucial for multi-user/multi-conversation contexts. Output Parsing: Using structured output parsers (JSON schema) to ensure agents provide data in a usable format for subsequent nodes. Human in the Loop: Implementing steps where the workflow pauses for human feedback (approval/denial or text-based input) to refine outputs or confirm actions. Error Workflows: Setting up a dedicated workflow to capture and log errors from active workflows, sending notifications via Slack or Google Sheets. Dynamic Model Selection: Using a model selector agent (via Open Router) to choose the most cost-effective or suitable LLM based on the input query's complexity. MCP Servers: Explains Model Context Protocol servers as a standardized way for agents to interact with tools, providing schema and resource information. Demonstrates self-hosting n8n and connecting to community MCP nodes (e.g., Airbnb, Brave Search) and discusses limitations. Lovable Integration: Building a front-end web app with Lovable that communicates with n8n via webhooks for backend AI processing (e.g., generating excuses). Lessons Learned: Build workflows first, wireframe before building, context is crucial, vector databases aren't always needed, prompting is critical (reactive vs. proactive), scaling agents is complex, and no-code tools have limitations.

n8n will change your life as a developer...5:56
FireshipFireship

n8n will change your life as a developer...

·5:56·1.1M views·4 min saved

What is n8n? n8n is presented as a free, open-source, and self-hostable alternative to Zapier. It allows users to create automation workflows by connecting various input triggers (e.g., website forms, databases, GitHub issues) to a series of steps involving third-party apps or custom code. Workflows are designed using a visual, flowchart-style editor, making them accessible to non-technical users. Use Cases and Examples Developers: Trigger workflows on GitHub PR merges to build Docker images and notify on Discord. YouTubers: Automatically share new video content across social media platforms. IoT Enthusiasts: Set up alarms triggered by smart cameras detecting law enforcement. Gamblers: Scrape football stats and use AI for bet suggestions. Personal Automation: Trigger a workflow when a specific message is received on Telegram. Getting Started and Deployment n8n can be run locally for testing via the command `npx n8n` in the terminal. For serious use, self-hosting on a VPS is recommended. The video demonstrates deploying n8n on a Linux VPS provided by Hostinger, using a pre-built Ubuntu template with n8n pre-installed. The cost for a VPS is shown to be around $5 per month. Building a Workflow Workflows start with a trigger node, which can be manual, scheduled, or connected to a third-party app (e.g., Telegram). Data from the trigger can be processed through subsequent nodes, including: AI nodes for analysis or generating content (e.g., apology letters) using custom prompts and models. Conditional logic nodes (if/else statements) to handle different scenarios based on data. Custom code nodes for executing arbitrary code or API calls. Integration with various apps for actions like ordering flowers or posting to X (formerly Twitter). Workflows can also log interactions to platforms like Google Sheets.

N8N FULL COURSE 6 HOURS (Build & Sell AI Automations + Agents)5:58:32
Nick SaraevNick Saraev

N8N FULL COURSE 6 HOURS (Build & Sell AI Automations + Agents)

·5:58:32·973.8K views·355 min saved

Introduction to n8n n8n is a powerful, open-source, no-code workflow automation tool. The course aims to teach practical business applications of n8n for revenue generation and cost savings. It covers setting up n8n, understanding its interface, and building workflows from scratch. Getting Started with n8n Sign up for n8n cloud is recommended for beginners due to ease of setup. The n8n interface features a canvas for building workflows, nodes for actions/triggers, and credentials for app connections. Key features include projects for organization, a template library with pre-built workflows, and an AI assistant for help. Self-hosting options (Render, Railway, Digital Ocean, Heroku, Docker) are discussed for cost savings and data privacy. Building Your First n8n Workflows Workflow 1: Manual Trigger & Email Sending Starts with a manual trigger. Connects to Gmail using OAuth2 for authentication. Sends a personalized email using dynamic data. Demonstrates testing steps and understanding node input/output. Workflow 2: Form Submission & AI Autoresponder Uses a form submission as a trigger. Collects user data via a custom form (name, email, phone). Integrates with OpenAI (GPT-4o) to process data and generate a personalized email response. Explains API key connection for OpenAI and prompt engineering (system prompt, user prompt). Shows how to pin data for easier testing and reuse across nodes. Includes a 120-second delay node before sending the final email. Demonstrates activating a workflow for live use. Workflow 3: Calendar Booking & CRM Integration Triggers on a booking created via Cal.com (using API key authentication). Sends a personalized HTML email reply to the booked person. Demonstrates date formatting using Luxon datetime functions (add, subtract, diff, extract, format). Integrates with ClickUp (CRM) via API key to create a task with booking details. Explains handling custom fields in ClickUp using JSON format. Shows referencing data from multiple nodes back using specific syntax ($`). n8n Functions and Data Handling Fields: Differentiates between fixed fields (static values) and expression fields (dynamic values using JavaScript/n8n syntax). Advocates for using expression fields. JSON: Explains JavaScript Object Notation (keys, values, data types like string, number, boolean, array, object), and how data is represented in n8n (array of objects). Core Functions: Covers manipulation of strings (includes, split, startsWith, endsWith, replaceAll, length, base64 encode/decode, concat, extract domain/email/URL, hash, quote, remove markdown/tags, slice, trim, URL encode), numbers (round, floor, ceil, absolute, format), arrays (length, last, first, includes, append, chunk, compact, concat, difference, intersection, find, indexOf, lastIndexOf, match, push, remove, replace, reverse, slice, unique, join, map, filter, reduce), objects (keys, values, isEmpty, hasField, compact, keepFieldsContaining, removeField, toJSON string, URL encode), booleans (toNumber, toString), datetimes (format, add, subtract, diff, extract, startOf, endOf, components, zone, isWeekend), and custom logic. Flow Control Nodes: Explains nodes like 'if' (conditional branching), 'filter' (data filtering), 'merge' (combining data streams), and 'split into batches'/'loop over items' (iterating over data). Advanced Concepts: Covers HTTP requests (GET, POST), webhooks (receiving data), OpenAI integrations (message model, AI agents), and using JavaScript/functions within n8n for complex data transformations. n8n vs. Make.com Comparison Module Availability: Make.com has a wider range of native integrations. JSON & Code Integration: n8n excels with native JavaScript/expression support. Flow Control: n8n offers superior flow control with built-in if statements, loops, merge, filter, and error handling. Testing: n8n's data pinning feature significantly simplifies workflow testing compared to Make.com's manual API calls. Connections: Make.com generally has simpler, one-click authentication for services; n8n can be more complex, requiring manual API setup. Webhooks & Mailhooks: Make.com is considered superior for ease of use and setup, especially with its mailhook feature. AI Features: n8n has strong native AI integrations (AI agents, chat interfaces, tool usage), while Make.com requires more manual setup. Sharing & Collaboration: n8n offers better template sharing and importing via URLs/copy-pasting, with a richer template library. Hotkeys & Documentation: n8n has excellent built-in hotkeys and inline documentation, enhancing usability. Financials: n8n is free if self-hosted (cost of server only) and scales affordably. Cloud plan is $24/month for limited workflows. Make.com is more accessible initially ($0 free plan, $10.59/month for core) but scales expensively with operations (modules). Recommendation: Make.com is better for simpler tasks and less technical users. n8n is superior for complex, operationally intensive, and AI-focused workflows, especially with self-hosting. Conclusion and Next Steps The course provides a comprehensive understanding of n8n, from basic setup to advanced functions and self-hosting. The emphasis is on practical application for business value and revenue generation. Encourages viewers to practice and utilize the knowledge gained. Promotes the "Maker School" community for further development of automation business skills, offering a roadmap, accountability, templates, and coaching.

n8n Quick Start Tutorial: Build Your First Workflow [2025]14:47
n8nn8n

n8n Quick Start Tutorial: Build Your First Workflow [2025]

·14:47·936.8K views·13 min saved

Workflow Fundamentals Triggers vs. Actions: Workflows start with a trigger that initiates the process, followed by actions that perform specific tasks. Data Items: Nodes process data in the form of items. Each node outputs an array of items, which can be zero to many. Most nodes perform their actions on each incoming item. Data Mapping & Transformation: Data from previous nodes can be mapped into the parameters of subsequent nodes. Expressions, enclosed in curly brackets `{}`, allow for dynamic data manipulation and use of helper functions like `$now` for date/time operations. Building the Installation Request Workflow Trigger: On Form Submission A web form is used to kick off the workflow. Users fill out fields like email and preferred install date. Conditional Routing: If Node An "If" node routes the workflow based on a condition. In this case, it checks if the preferred install date is within seven days. Action: Slack Notification If the install date is within seven days, a message is sent to a specific Slack channel containing the user's contact information and preferred install date. Advanced Techniques & Tips Pinned Data: To avoid repeatedly entering test data, node output can be "pinned." This allows for testing without re-executing the trigger step. Pinned data is not used in production. Workflow Annotation: Renaming nodes, especially conditional ones (e.g., phrasing as a question like "Is within seven days?"), improves workflow clarity. No Operation (NoOp) Node: A placeholder node that doesn't perform any action but can be used to mark future development points in the workflow. Credentials: Connecting to external services like Slack requires setting up credentials, which securely store API keys or OAuth tokens. Workflow Activation: After building and saving, workflows must be activated to run automatically. Production executions are distinct from test executions (marked with a beaker icon). Copying to Editor: A pro-tip allows unpinning current data and pinning data from a specific production execution, useful for troubleshooting and workflow evolution.

n8n Now Runs My ENTIRE Homelab47:17
NetworkChuckNetworkChuck

n8n Now Runs My ENTIRE Homelab

·47:17·935.4K views·45 min saved

AI Agent Setup and Hosting Introduces "Terry," an AI agent built with n8n, designed to monitor, troubleshoot, and fix home lab issues. Recommends self-hosting n8n in the cloud (e.g., via Hostinger using coupon code "network chuck") for reliability, immune to home lab tinkering. Suggests using TwinGate for secure remote access to the home lab. Core Functionality: Monitoring and Basic Troubleshooting Terry is initially taught to monitor a website by using an HTTP request tool. Demonstrates how to give Terry tools and a system prompt to define his role (IT administrator). Introduces an SSH tool (as a sub-workflow) to allow Terry to execute commands on the server. Teaches Terry to troubleshoot by checking Docker container status using docker ps. Terry's troubleshooting capabilities are expanded to include docker inspect and checking logs based on prompt updates. Automation and Fixing Capabilities Terry is automated using a schedule trigger (e.g., every 5 minutes) instead of manual chat prompts. Introduces "Set Field" nodes to provide Terry with a prompt and a chat ID for scheduled tasks. Terry is configured to send notifications (via Telegram in the example) only when issues are detected. Implements "structured output" to allow for conditional logic (e.g., only notify if the website is down). Terry is taught to fix issues, starting with restarting a Docker container when a website is down. Advanced Troubleshooting and Human-in-the-Loop Tests Terry's ability to troubleshoot novel issues, like a port conflict, by updating his prompt to use a generic "CLI tool." Highlights the need for a "human-in-the-loop" system for safety and control. Configures Terry to request explicit approval before running potentially critical commands via Telegram. Explains how to set up the approval workflow, including using "if" nodes and "Set Field" nodes to manage the approval state and context. Introduces a "switch" node for more granular notification logic (e.g., notify if a fix is applied or if the website is down). Integration with Home Lab Services Demonstrates connecting Terry to real home lab services like UniFi (using its API), Proxmox (via SSH), and Plex (via API). Terry is given personas (e.g., Network Engineer) and tasks like identifying bandwidth hogs or checking VM status. Emphasizes that this setup is a starting point to spark ideas for integration with other services like NAS devices. Future Development and Limitations Acknowledges limitations: Terry needs help (suggests sub-agents), documentation is crucial, and a help desk system is needed. These future steps (sub-agents, documentation, help desk) will be covered in subsequent videos. Encourages viewers to build their own Terry, start simple, and share their experiences.

I Built a Marketing Team with 1 AI Agent and No Code (free n8n template)33:56
Nate Herk | AI AutomationNate Herk | AI Automation

I Built a Marketing Team with 1 AI Agent and No Code (free n8n template)

·33:56·844.9K views·30 min saved

AI Marketing Team Overview The system uses one AI agent to perform marketing tasks: creating videos, LinkedIn posts, blog posts, images, editing images, and searching an image database. Communication is through Telegram (voice or text). The agent utilizes six n8n workflows as tools. All resources (templates, workflows, Google Sheet, Createmate template) are available for free in a "Free School community." Live Demo and Capabilities Image Creation: User requests a flyer for a cat food flash sale; the AI generates an image. Image Editing: User requests the generated image be made more realistic; the AI edits it. Blog Post Creation: User requests a blog post about sleep and productivity; the AI generates a post with references and a graphic. Video Creation: User requests a video of a beaver building a house; the AI generates a video with sound effects (though the initial request resulted in a dam/house hybrid). Workflow Breakdown: Core Agent and Tools The main agent receives input from Telegram (voice or text) and processes it. System Prompt: The agent is instructed to act as a marketing AI, detailing its tools and their uses (create image, edit image, search image database, blog post, LinkedIn post, video, think tool). Tool Integration: Each tool corresponds to a specific n8n workflow that the main agent calls. Input/Output: Workflows define specific inputs (e.g., image title, prompt, chat ID) and outputs are returned via Telegram and logged in a Google Sheet. Detailed Workflow Explanations Create Image: Takes image title, prompt, and chat ID as input. Uses an OpenAI image model (e.g., GPT-4 Vision's model) to generate an image based on a detailed prompt. Converts the output (base64 JSON) to binary data. Sends the image to Telegram and uploads it to Google Drive. Logs the image details (title, type, prompt, ID, link) to a Google Sheet. Edit Image: Requires an image (via ID), the edit request, and chat ID. Downloads the image from Google Drive using its ID. Uses OpenAI's edit endpoint to modify the image based on the request. Converts the edited image to binary, sends it to Telegram, uploads to Google Drive, and logs it. Search Images: Takes an image title and intent (get or edit) as input. Searches a Google Sheet (marketing team log) for the image. Returns the image ID and link if found; otherwise, reports "not found." If the intent is "edit," it passes the image ID back to the main workflow. Blog Post: Takes blog topic, target audience, and chat ID. Uses a Tavali web search agent to research the topic. Generates a blog post tailored to the audience, including sources. Creates a text prompt for a related image. Generates the image using OpenAI. Sends both the blog post and the image to Telegram, uploads to Google Drive, and logs them. LinkedIn Post: (Similar to blog post workflow, with specific prompts for LinkedIn content and graphics) Video Creation: Takes a video topic and chat ID. Breaks the topic into four cohesive parts for visual storytelling. Generates four image prompts for these parts. Uses Flux (via PI API) to generate four images (approx. 1.5 cents each). Waits for image generation and retrieves URLs. Uses Runway (approx. 25 cents per 5-second clip) to convert images to short video clips. Generates text prompts for sound effects using an AI sound prompt generator. Uses 11 Labs (approx. $5/month starter plan) to create 5-second sound effect clips for each video segment. Merges video clips and audio using a Createmate template (approx. 1 credit per 20-second render). Sends the final video to Telegram and logs it. Pricing and Setup n8n: Cloud hosting is approximately $27/month. OpenAI Image Generation/Edit: $0.19-$0.20 per image/edit. OpenAI Text Generation (for prompts): GPT-4.1 Mini is cost-effective ($0.40/million input tokens, $1.60/million output tokens). Flux Image Generation: Approx. $0.015 per image. Runway Video: Approx. $0.25 per 5-second clip ($1.00 total for four clips per video). Createmate: Free trial available; paid plans offer credits for rendering (e.g., 2000 credits for ~200 videos). 11 Labs: Starter plan is $5/month for generous sound credit. Setup: Download seven n8n workflow JSON files (main agent + 6 tools) from the Free School community. Import workflows into n8n. Configure API keys (OpenAI, OpenRouter, Google Drive, Google Sheets, Telegram). Make a copy of the provided Google Sheet template for logging. Set up the Createmate template by pasting the script and importing the curl command into n8n. Connect Telegram credentials.

This AI System Creates Longform YouTube Videos Hourly (n8n NO CODE automation tutorial 🥚)35:50
RoboNuggetsRoboNuggets

This AI System Creates Longform YouTube Videos Hourly (n8n NO CODE automation tutorial 🥚)

·35:50·806.5K views·33 min saved

AI Video Creation System Overview The system automates the creation of long-form YouTube videos hourly using AI and no-code tools. It leverages an "ideas agent" (TAG GPT) and a "creator agent" (n8n automation workflow) to generate video ideas, prompts, visuals, voiceovers, and background music. The workflow can be adapted to various niches, including stoicism, sleep stories, horror, children's stories, trivia, and meditation. Workflow Setup: Ideas Agent Uses ChatGPT with a specific prompt to generate video ideas based on a chosen topic (e.g., stoicism). The output is a table with video ideas, captions, and other relevant details. This table is then copied into a Google Sheets template for further processing. Workflow Setup: Creator Agent (n8n) The core automation is built using n8n, a no-code automation platform. Input Section: A Schedule trigger initiates the workflow (e.g., daily or hourly). A Google Sheets node fetches video ideas marked "for production" from the Google Sheet. A Basic LLM Chain node generates scene-specific voiceover text and image prompts using OpenAI. This node uses a system prompt to guide the AI in creating 10 scenes with voice text and image prompts per scene. Requires a structured output parser to format the AI's response into JSON. Creation Section: A Google Sheets node retrieves the intro video URL and randomized background music URL from a separate sheet. Music is generated using Suno.com and uploaded via JSON to Video. Intro videos are sourced from Pixels.com or uploaded directly. An HTTP Request node sends a POST request to JSON to Video to create the video. This uses a pre-defined template ID and variables including voiceover text, image prompts, music, and intro video. JSON to Video handles voice generation (via 11 Labs or free Azure models) and image generation (via Flux Pro or free Flux Snell). A Wait node pauses the workflow while the video renders. Another HTTP Request node with a GET method retrieves the completed video URL from JSON to Video. A Switch node implements error handling, looping back to wait and retry if the video is still rendering, or logging an error if it fails. Output Section: A Google Sheets node updates the status to "done" or "error" in the Google Sheet. An HTTP Request node fetches the video file binary data. A YouTube node uploads the video to YouTube with a title, description (caption), and set to "unlisted" privacy. A final Google Sheets node marks the row as "done" in the Google Sheet to prevent reprocessing. Customization and Community Users can customize the video template in JSON to Video by editing the JSON structure for elements like intro text, fonts, saturation, and subtitle colors. The RoboNuggets community offers ready-to-load automation blueprints, discounts on JSON to Video, and a space for AI professionals to network and find opportunities. The creator provides 15 niche ideas for YouTube automation.

n8n Beginner Course (1/9) - Introduction to Automation12:48
n8nn8n

n8n Beginner Course (1/9) - Introduction to Automation

·12:48·729.5K views·12 min saved

Introduction to Automation Automation is essential for data-driven decisions, improving ROI, and reducing wasted resources (time, budget, human effort). Manual tasks lead to wasted time, human error, and low employee morale. Automation brings predictability, data availability, and allows employees to focus on higher-value tasks, increasing efficiency and ROI. Core Concepts of Automation Definition: A predictable set of predetermined actions that transfer data. Trigger: Initiates an automation (manual, scheduled, or event-based like a webhook or form submission). Filtering: Allows or blocks data from specific paths based on conditions. Actions/Apps: Interact with web applications (e.g., updating Google Sheets, sending Slack messages, interacting with CRMs like Salesforce). Each app has a unique set of actions. What is a Workflow? Workflows typically consist of a Trigger, followed by data processing (sorting, filtering, formatting, transforming), and finally Actions. Automation Best Practices Map it out first: Create a flowchart before building to ensure understanding, identify necessary tools/apps, assess feasibility, and estimate workload. Mapping can reveal if human intervention is needed for tasks that cannot be fully automated. Use tools like Miro or FigJam to create flowcharts, listing each process step as a block and linking them with arrows. Clarify any uncertainties during the mapping phase before starting the build.

About n8n Automation

n8n (pronounced "n-eight-n") has become the go-to automation tool for developers and power users who want control over their workflows. Key features: • Open-source and self-hostable (or use n8n Cloud) • 400+ integrations with popular services • Visual workflow builder with code options when needed • AI capabilities: Build agents, connect to LLMs, process data • Fair-code license: Free to self-host, paid for cloud/enterprise • Active community and extensive documentation Popular use cases include building AI agents, automating social media, syncing data between tools, processing webhooks, and creating custom internal tools without traditional development.

Related Topics

n8n tutorialn8n automationn8n workflown8n beginner

Frequently Asked Questions

What is n8n?

n8n is an open-source workflow automation platform. It lets you connect apps, automate tasks, and build AI agents through a visual interface. You can self-host it for free or use their cloud service.

Is n8n free?

Yes, n8n is free to self-host with unlimited workflows. n8n Cloud offers a free tier with limits, and paid plans start at $20/month for more executions and features.

How does n8n compare to Zapier?

n8n is open-source and self-hostable, while Zapier is cloud-only. n8n offers more flexibility and is cheaper at scale, but Zapier has more pre-built integrations and is easier for non-technical users.

Can n8n build AI agents?

Yes, n8n has native AI capabilities including connections to OpenAI, Anthropic, and local models. You can build agents that process data, make decisions, and take actions across your connected services.

Do I need coding skills to use n8n?

No, n8n's visual builder works without code. However, basic JavaScript knowledge helps for advanced workflows. Many tutorials teach both no-code and code approaches.