n8n Cloud trial plan

n8n Cloud Free Trial: Three Business Workflows to Test in 14 Days

Do not spend the trial browsing random nodes. Test a lead alert, weekly summary, and invoice reminder against written acceptance criteria, then keep or cancel Cloud using evidence.

A bakery owner testing a lead alert, weekly summary, and invoice reminder before deciding whether to keep n8n Cloud

Direct answer: use the 14-day n8n Cloud trial to prove three narrow jobs, not to build a giant automation system. Keep Cloud only if at least two workflows run reliably, a named person can diagnose a failure, and the expected production executions fit the paid plan. Cancel if native tools already solve the jobs or the workflows still need constant rescue on day 14.

This guide is a trial experiment for small-business owners and operators. It is not a broad introduction to n8n, a Cloud versus self-hosted comparison, or a complete pricing table. The job here is to leave the trial with evidence: three test records, three failure drills, an execution estimate, and a clear keep-or-cancel decision.

Know the trial limits before day one

Current trial fact What it means for your test
14 days Prepare sample data and app access before signup so the clock is used for testing.
No credit card required for the Starter and Pro Cloud trial The trial ends unless you manually subscribe. There is no ongoing free n8n Cloud plan.
Pro features under Starter compute limits You can evaluate features such as execution search and workflow history, but not Pro-level compute capacity.
800 AI Assistant credits during the trial Use the preview for one controlled build. Do not make AI credits the reason the core workflows pass.
Manual executions do not use the production quota Develop and test manually first. Activate schedules and webhooks only when acceptance checks are ready.

Official-source mismatch, checked August 8, 2026: the current n8n pricing FAQ says the trial uses Starter's 2,500-execution limit, while the dedicated free-trial documentation still says 1,000 executions. Treat the quota shown inside your workspace as binding. Until it confirms otherwise, plan as if you have 1,000 production executions.

Trial and plan details can change. The current pricing page also lists 320 MiB RAM and 10 millicores of burstable CPU for trial and Starter compute. That is enough for small tests, but large files, long code steps, and memory-heavy AI work can distort the result. Use small, representative records first.

Prepare the evidence before signup

A useful trial begins with a small test pack. Create five dummy leads, one week of sample sales or booking rows, and six fake invoices with different due dates and statuses. Use test inboxes and test chat channels. Do not start with live customer records, automatic payment actions, or messages that can reach real customers.

  1. Name one owner. This person builds the workflow, records failures, and decides whether it passed.
  2. Write the expected output. For every sample record, state what should happen and what must not happen.
  3. Check the native route. If your form, accounting tool, or CRM already provides the needed alert or reminder, test that first.
  4. Prepare credentials. Know which test accounts need access, but add credentials through n8n's credential cards. Never paste secrets into a prompt.
  5. Create a result sheet. Record workflow, input, expected result, actual result, execution count, failure, recovery time, and decision.

A practical 14-day schedule

Days Work Evidence to keep
Before signup Prepare dummy data, test accounts, acceptance checks, and the result sheet. Test pack is ready before the clock starts.
1-2 Set the workspace timezone, connect test credentials, and run one manual trigger. Correct timestamps and one clean credential test.
3-5 Build and break the lead alert. Valid, invalid, and duplicate lead results.
6-8 Build and break the weekly summary. Correct totals, empty-data handling, and delivery proof.
9-11 Build and break the invoice reminder. Due, paid, disputed, and duplicate invoice results.
12 Run credential, timeout, duplicate, and missing-data failure drills. Recovery steps and time to diagnose each failure.
13 Estimate monthly production executions and name the support owner. Normal-month and busy-month estimates.
14 Use the scorecard, export workflows, and keep or cancel. A written decision, not a vague intention to revisit later.

Workflow one: route a qualified lead alert

Start with a form or webhook, normalize the fields, reject records missing an email or phone number, and send a notification to the person who owns follow-up. Use email, Slack, Telegram, Google Chat, or another channel your team already checks. The workflow is valuable when it filters and routes leads, not merely when it copies every form submission into another inbox.

Minimum path: Form or Webhook → Edit Fields → If → destination app.

Pass: five valid test leads reach the right owner within the expected time, invalid records are held for review, and a duplicate does not create duplicate work. Fail: the team still checks the form manually because it does not trust the alert.

Workflow two: deliver a weekly operating summary

Use a Schedule Trigger to read a small sheet, table, or database and calculate three numbers that affect a real decision. A bakery might track orders, average order value, and unfulfilled pickups. A clinic might track new inquiries, booked appointments, and unanswered leads. Compute the numbers deterministically before asking AI to explain them.

Minimum path: Schedule Trigger → source app → filter or aggregate → email or chat.

Pass: the owner receives the correct numbers at the correct time and can trace them to source rows. Fail: the summary is polished but the totals cannot be reproduced.

Workflow three: create a safe invoice reminder

First check the native reminder feature in your accounting platform. Use n8n when the job needs data from more than one system, different rules by customer or invoice, an internal approval, escalation to an account owner, or a stop condition that the native feature cannot express.

During the trial, create an internal task or a draft reminder instead of sending directly to a customer. Use fake invoices with statuses such as due soon, overdue, paid, disputed, and missing an email address. Only consider automatic external sending after someone has approved the wording, timing, opt-out handling, and stop rules.

Minimum path: Schedule Trigger → invoice source → due-date and status checks → draft or internal approval.

Pass: the workflow applies status and duplicate safeguards before any customer-facing action. Fail: a changed invoice status can still produce an incorrect or repeated reminder.

Use the new AI Assistant for one controlled build

n8n's current AI Assistant is a Cloud-only preview that can create, edit, test, and troubleshoot workflows inside the editor. It replaces the older assistant experience as the actively developed path. Preview features can change and can produce incorrect workflows, so use it to accelerate one draft, then inspect every node and test the result yourself.

Example prompt: Create a test workflow that receives a lead by webhook, requires either email or phone, routes valid records to my test Slack channel, sends invalid records to a review branch, and records the result. Use dummy data. Ask before activating the workflow or changing credentials.

Add credentials through the credential card when asked. Do not paste API keys, passwords, or live customer data into the chat. n8n says the assistant asks for confirmation before high-impact actions, but the operator still owns permissions, message content, data exposure, and the final activation. Trial credits are token-based, so long conversations and large workflows consume more than a short, focused request.

Understand what consumes an execution

n8n counts a complete production workflow run as one execution, regardless of how many steps it contains. Manual runs from the editor do not count. Triggered production runs do count, including failed scheduled runs. Polling triggers count when they find new data, and each webhook request normally starts an execution. Sub-workflows and error workflows do not add separate billable executions.

Frequency changes the economics quickly. A daily summary is about 30 executions per month. A five-minute schedule is roughly 8,640 to 8,928 scheduled runs in a 30- or 31-day month, even before other workflows and retries. Use event triggers when appropriate, avoid pointless polling, and estimate both a normal month and a busy month before choosing a plan.

Run failure drills before you trust the workflows

A successful happy-path demo only proves that one sample worked once. On day 12, break each workflow deliberately and record what the operator sees, whether partial actions can repeat, and how long recovery takes.

A useful workflow exposes the failure, avoids unsafe partial repeats, and gives the owner a clear retry path. If the same error can send a second customer message, charge twice, or overwrite good data, the workflow is not ready for production.

Use this keep-or-cancel scorecard

Question Keep signal Cancel or redesign signal
Did at least two workflows solve a real job? The owner stopped a repeatable manual check or handoff. The workflows were demos with no process owner.
Were results reliable? Acceptance checks and failure drills passed. The team still verifies every result manually.
Can someone support it? A named owner can find executions, diagnose failures, and retry safely. Only the original builder understands the workflow.
Does the usage fit? Busy-month executions leave reasonable headroom. Polling, retries, or volume already exceed the likely plan.
Is n8n the simplest route? Filtering, transformation, routing, approval, or error handling justifies it. A native feature solves the job with less maintenance.

Keep Cloud when at least two workflows pass, the support owner is clear, and the paid-plan cost is smaller than the time and errors removed. Cancel when native tools win, the workflows remain fragile, or no one will own them. A cancelled trial that prevents a poor automation purchase is still a successful test.

Export before the trial ends

There is no permanent free n8n Cloud plan. If you do not subscribe, the trial expires. n8n's current Cloud documentation says the workspace owner can download workflows from a recent backup for 90 days after the trial, after which the data is permanently deleted. Export your workflow JSON files and result sheet on day 14 instead of relying on that recovery window.

If the trial passes, activate only the workflows whose safeguards are complete. Start with one production workflow, monitor its executions, and add the next one after the owner has handled a real failure. The point is not to automate everything. It is to prove that one small system can save time without creating a larger support problem.

Sources checked

Product limits and feature behavior were verified on August 8, 2026. n8n can change trial terms, pricing, preview features, and plan limits.

n8n partner link

Test one useful workflow before you automate more

Affiliate disclosure: I may earn a commission if you sign up through this link, at no extra cost to you.

Start the n8n Cloud trial