n8n (pronounced “n-eight-n”) turns “when this happens, do that” sentences into running workflows. A form arrives on your website → a WhatsApp notification; a new order → written to a sheet and sent to the courier; every morning → a stock report by email. All of these are built in n8n by connecting boxes. Code is not required; you can write it when needed.
What it is not
- Not a chatbot. You can put AI models inside a workflow, but n8n itself is a connector, not a chat tool.
- Not a website builder. It does not produce pages; it processes the data coming from yours.
- Not a Zapier/Make clone. It does the same job; the difference is that it is open source and can run on your own server if you wish. There is a cloud version too.
Core concepts
- Trigger: the event that starts a workflow. A form submission, a new email, a schedule, a webhook.
- Node: a box that does one job. Write to a sheet, send a message, transform data, branch on a condition.
- Workflow: the chain of nodes from trigger to result.
- Credential: the permission that lets n8n act in an app on your behalf. These live in your account, not someone else’s.
Your first workflow: form → notification
- 01Make your website form post to n8n (the webhook trigger gives you an address; connect the form to it).
- 02Write the incoming data to a Google Sheet or Notion row.
- 03Send the same data to yourself as a Telegram or WhatsApp message.
- 04Activate the workflow, submit the form once, confirm it shows up in all three places.
This workflow ends the “I missed a form” problem in a lunch break. For more complex examples, our automation page lists the steps for order notifications, form follow-up, stock alerts and market scans.
Where will it run?
You can try n8n on your own computer, but for workflows to run at night you need an always-on server. Options: n8n’s cloud service, a small virtual server, or cloud providers with a free tier. Decide upfront who owns maintenance — updates, backups, credential renewals.
When to have someone build it
- If the workflow carries payments or customer data: the cost of error is high and test discipline is needed.
- If more than three apps are connected: conversions between data formats are most of the work.
- If “it works but I do not know why”: one day it will stop and nobody will know why.
Our approach: we build the workflows in your account, document them and hand them over; we do not host n8n and rent it to you. The workflow is yours. The AI automations service states what is and is not included; write the repetitive task in your business in one sentence in the brief form and we will tell you which workflow solves it.
For a broader frame, what is AI automation explains how n8n combines with AI models.

