n8n marketing workflows: five copy-ready blueprints for content, leads, and analytics — with official pricing verified 6 September 2026. Read the guide.
Why Marketing Workflows Beat One-Off Task Automation
If you are searching for n8n marketing workflows, you already feel the difference between a tool and a process: the tool saves a click, the process saves the morning. HubSpot’s marketing statistics page, fetched 6 September 2026, cites its State of Marketing Report: 93% of marketers report using automation for administrative tasks such as scheduling and documentation, and 92% use it for data analysis and reporting — yet only 47% report that automation makes their marketing processes more efficient (hubspot.com/marketing-statistics). Nearly every team automates single tasks; most still do not feel automated where it counts.
That 93-versus-47 gap is the business case for workflow automation. A task automation generates one caption when you ask. A workflow owns an outcome end to end: every weekday at 08:30 it pulls the newest posts from your competitor feeds, summarizes the top stories in your brand voice, posts the brief to Slack, and logs what it showed you so tomorrow’s brief differs from today’s. n8n, a fair-code workflow platform that its own site says serves 200,000+ community members with 500+ integrations, is where marketing teams build this kind of pipeline with nodes instead of code.
The five blueprints below map to jobs lean marketing teams repeat weekly: a daily brief, lead routing, competitor watching, draft review, and a GA4 digest. Each lists nodes in order, includes the prompt for the AI step, and names where it tends to break. Prices were verified on official pages on 6 September 2026; time estimates are illustrative, not benchmarks. If you are still choosing a platform, start with our Zapier vs Make vs n8n comparison and the best AI marketing automation tools ranking first.
What n8n Costs: Verified 6 September 2026
n8n prices its cloud plans by monthly workflow executions, not by steps. Its pricing page, fetched 6 September 2026, states that all plans include unlimited users, unlimited workflows, and every integration, and that pricing is “based on monthly workflow executions, regardless of complexity” — a 30-step workflow and a 5-step workflow each consume one execution (n8n.io/pricing). That fits the multi-step jobs in this guide, and the page’s own line — “Pay for full executions, not for each step” — targets the per-task billing of Zapier and Make.
For context, Zapier’s free plan still caps at 100 tasks per month and Professional starts at $19.99/month (zapier.com/pricing, fetched the same day). n8n’s free option is the self-hosted Community Edition, described on the pricing page as a standard, self-hosted version available on GitHub. If you would rather not operate servers, the managed cloud plans below include AI credits, so the AI nodes run without a separate OpenAI key. All figures were read from official pages on 6 September 2026 and are quoted as published.
- Starter — €20/month billed annually (free trial, no credit card): 2,500 workflow executions per month, 5 concurrent executions, 1 shared project, 2,300 AI credits per month, forum support. Runs all five blueprints at modest volume.
- Pro — €50/month billed annually: 10,000 executions per month, 20 concurrent executions, 3 shared projects, up to 13,700 AI credits, plus workflow history, execution search, global variables, and admin roles. Our pick for a team of three to five.
- Business — €667/month billed annually, aimed at companies under 100 employees: 40,000 executions, SSO/SAML/LDAP, Git-based version control, separate environments, 30 days of insights, and an AI Assistant in preview. The same page notes a Start-up plan with 50% off Business for teams under 20 employees.
- Enterprise — custom pricing through sales, hosted by n8n or self-hosted, with unlimited shared projects, 200+ concurrent executions, log streaming, extended data retention, and SLA-backed support.
- AI model options: the OpenAI node takes a key from platform.openai.com, and Anthropic models plug in through n8n’s Anthropic Chat Model node. Claude Pro is $20/month billed monthly or $17/month billed annually (anthropic.com/pricing, fetched 6 September 2026). More in our n8n and Claude profiles.
Blueprint 1: The Daily AI Brief (Feeds → Summary → Slack)
What it does: at 08:30 every weekday it pulls the latest posts from your three to five most important feeds, summarizes the top items, and posts a ranked brief to a Slack channel, or emails it. Build this one first: it is small, it fails loudly when a feed breaks, and it teaches the node vocabulary every later blueprint uses.
Where it runs: any n8n cloud plan or the self-hosted Community Edition. You need a Slack token (or Gmail account) plus AI credits or your own OpenAI/Anthropic key. Build the flow, run it once with the Manual Trigger and test data, then enable the schedule.
- Node 1 — Schedule Trigger: weekdays at 08:30 (cron 30 8 * * 1-5) in your team’s timezone. Test downstream with a Manual Trigger first; a schedule fires whether or not the workflow is correct.
- Node 2 — RSS Read: one node per feed — competitor blogs, industry newsletters, a Google News RSS search for your niche — each limited to 5 items.
- Node 3 — Item Lists: merge the feeds, sort by publish date, and cap the batch at 15 items so the AI step has a bounded input and predictable cost.
- Node 4 — AI step (OpenAI node or equivalent): system prompt “You are a marketing editor for {brand}, read by {audience}. From the items, choose the 3 most relevant. For each: headline, source, one line on why it matters to us, and one suggested take. Never invent details.” Set the model and temperature in the node; paste the prompt as-is, then tighten the output format from what comes back.
- Node 5 — Slack: post the brief to #marketing-brief as a formatted message, or send it with Gmail. End the run by appending the item titles to a Google Sheet so the next run can filter them out — otherwise day two repeats day one.
- Watch-outs: feeds break silently, so attach an Error Trigger that messages you when RSS Read fails; and the AI summary is for humans, not for republishing — run one [VERIFY]-style pass before anyone quotes it.
Blueprint 2: Lead Capture → AI Enrichment → Routing
What it does: when a prospect submits your form, the workflow adds firmographic context from public web results, classifies the lead, writes a three-line personalization note for the first touch, creates the contact in your CRM, and alerts the right person — within two minutes, with nobody watching the inbox.
Why this stays honest: enrichment is context, not gospel. The AI summarizes public signals and a human still writes the final email from the note. It also assumes your form collects consent and that you comply with GDPR/CCPA — do not enrich or store data you have no right to.
- Node 1 — Trigger: the Typeform trigger on submission, or a Webhook node if your form tool can POST JSON. Capture name, work email, company, and message.
- Node 2 — HTTP Request to Tavily: POST to api.tavily.com/search with a JSON body containing your API key, the query “{company} about products” and max_results 5. Tavily’s free tier is enough to test; the call returns a JSON summary of the top results (Tavily profile).
- Node 3 — AI step: prompt “Classify this lead: company {company}, message {message}. Output JSON with segment (SMB, mid-market, enterprise), likely use case, buying signal 1-5, and a 3-line personalized opener a salesperson could send. Base every line only on the data provided.”
- Node 4 — If node: route on the buying-signal score. Strong leads continue to the CRM branch; the rest drop to a nurture sheet so the sales channel stays quiet.
- Node 5 — HubSpot node: create or update the contact and attach the enrichment summary as a note. Then a Slack node posts “New lead: {company} — {segment}, signal {score}” plus the opener to #sales-leads.
- Watch-outs: every enrichment call costs an API call or AI credit, so cap daily runs; and never auto-send the AI opener — routing to Slack exists precisely so a human decides in context.
Blueprint 3: Competitor Content Watch (Sitemap → Diff → Digest)
What it does: once a week it checks your competitors’ sitemaps for new or updated pages, summarizes each one in a paragraph, and posts the digest to your content team — the monitoring half of an AI SEO strategy, minus the manual tab-checking.
Keep it scoped: a sitemap can list tens of thousands of URLs. This workflow caps the diff at the ten newest pages and summarizes only those. Monitoring is a trickle, not a firehose.
- Node 1 — Schedule Trigger: weekly, Monday at 09:00.
- Node 2 — HTTP Request: fetch each competitor sitemap (the XML at /sitemap.xml or /sitemap_index.xml). Parse the response with the Extract From File node set to XML, then flatten the URL list with Item Lists.
- Node 3 — Google Sheets: read the Seen URLs column from your tracker sheet and Filter out anything already logged, leaving only new and modified URLs.
- Node 4 — Sort + Limit: keep the ten most recent new URLs so a competitor publishing 80 pages in one week cannot flood the AI budget.
- Node 5 — AI step: for each new URL, fetch the page (HTTP Request plus Extract From File for HTML) and prompt “Summarize this page in one paragraph: topic, target keyword, angle, and the offer. Then say what we should do in response, or say nothing.”
- Node 6 — Output: append the new URLs to the tracker sheet and post the digest to #content, or email it with Gmail. Watch-outs: fetch only pages you are legally allowed to access and respect robots.txt and the site’s terms — the goal is competitive awareness, not scraping content to republish.
Blueprints 4 and 5: Draft Queues and the Weekly GA4 Digest
Blueprint 4 — the draft queue — puts a human between the model and the scheduler. Every new row in your content-idea sheet becomes four channel-native drafts (LinkedIn post, X thread, newsletter intro, carousel outline) written to a review tab; a reviewer edits and marks rows approved; a second small workflow publishes approved rows through Buffer’s API. Nothing reaches a scheduler without an edit — the rule from our AI content editing checklist.
Blueprint 5 — the GA4 digest — closes the week: it pulls the last seven days of key metrics, has the model compare them with the previous period in plain language, and emails the team a three-paragraph summary every Friday at 16:00. Reporting is the 92% use case from the HubSpot data above; the digest turns it from a monthly scramble into a habit.
- Blueprint 4, Node 1 — Google Sheets trigger: runs on new rows in the Ideas tab. Expected columns: topic, target keyword, links, notes.
- Blueprint 4, Node 2 — Loop Over Items: processes each new idea separately, so five ideas cost five small AI calls instead of one giant prompt.
- Blueprint 4, Node 3 — AI step: prompt “Using the brand voice document at {link}, write for this topic: a LinkedIn post under 250 words, a 5-post X thread, a newsletter intro, and a carousel outline. Wrap any factual claim in [VERIFY].” Append the outputs to the Drafts tab with the status To review.
- Blueprint 4, Node 4 — Slack: notify #content that drafts are ready. The reviewer edits in the sheet and flips the status to Approved.
- Blueprint 4, Node 5 — publisher workflow on a Schedule Trigger every 15 minutes: read rows with status Approved, POST each to Buffer’s API (api.bufferapp.com) with your Buffer access token, mark the row Published, and raise an error if the API rejects the post.
- Blueprint 5, Node 1 — Google Analytics node: connect GA4 with OAuth2 and run a report for the last 7 days and the previous 7 days — sessions, users, top pages, conversions.
- Blueprint 5, Node 2 — AI step: prompt “Compare these two periods in plain language for a busy CMO. Three findings, one risk, one recommendation. No jargon.”
- Blueprint 5, Node 3 — Gmail: send the summary to the team every Friday and append the raw numbers to the reporting sheet for the quarterly review.
- Watch-outs for both: approve-by-default kills the review step, so only Approved rows ever publish; and GA4 sampling can make small-property numbers unstable, so treat the digest as a direction signal, not an audit.
FAQ: n8n Marketing Workflows
Q: Is n8n free for marketing automation? A: Yes, if you self-host. The Community Edition — the standard, self-hosted version of n8n available on GitHub, per its pricing page — is free if you can run and maintain a server or a Docker container. Managed hosting starts at Starter, €20/month billed annually (2,500 executions, 2,300 AI credits per month). By contrast, Zapier’s free plan covers 100 tasks per month — one of these blueprints can exhaust that in a week.
Q: How does n8n pricing differ from Zapier or Make? A: The unit is the difference. n8n bills per workflow execution with unlimited steps — “Pay for full executions, not for each step,” per its page — while Zapier counts tasks (about one per step) and Make counts operations. A multi-step marketing job costs one n8n execution but several Zapier tasks. Zapier Professional starts at $19.99/month, so the gap grows exactly when workflows get longer. Our Zapier vs Make vs n8n comparison and the Zapier and n8n profiles go deeper.
Q: Do I need to code to build these n8n marketing workflows? A: No. Every blueprint is trigger, app, and AI nodes on a canvas; the only optional code is JSON in a Code node. Budget time for three things: authenticating each app node (OAuth or an API key), learning how node inputs and outputs are named, and testing with small batches before enabling schedules. Run each once with a Manual Trigger on real-but-small data, then let the Schedule Trigger take over.
Q: Can n8n workflows use AI without paying for OpenAI? A: On cloud plans, yes: Starter includes 2,300 AI credits per month and Pro up to 13,700 (pricing page, 6 September 2026), covering n8n’s AI-powered nodes. You can also bring your own keys — the OpenAI node accepts an API key, and Anthropic models run through n8n’s Anthropic Chat Model node. Claude Pro costs $20/month billed monthly or $17/month billed annually (anthropic.com/pricing, verified 6 September 2026). Self-hosted users bring their own keys by default.
Q: Which n8n plan should a marketing team of three start on? A: Starter at €20/month runs all five blueprints while you learn the platform. Move to Pro at €50/month when you need 10,000 executions plus workflow history and execution search — the debugging tools matter once workflows are in production. Business at €667/month earns its bill only when you need SSO, Git version control, or environment separation; teams under 20 employees should check the Start-up plan’s 50% discount on Business first.
Key Takeaways
- 1HubSpot 2026: 93% of marketers automate admin tasks, but only 47% say automation makes processes more efficient — workflows close that gap.
- 2n8n bills per execution with unlimited steps: Starter €20/mo and Pro €50/mo (annual), both verified on 6 Sep 2026.
- 3Cloud plans include AI credits (2,300/mo on Starter); the self-hosted Community Edition is free on GitHub.
- 4Five copy-ready blueprints: daily brief, lead enrichment routing, competitor watch, draft queue, GA4 weekly digest.
- 5Human gates stay in the loop: review before publishing, verify AI summaries, and respect consent and site terms.
Owen Nash
·Marketing Automation ExpertOwen Nash is a marketing automation specialist with deep expertise in AI agent workflows. He has built automation systems for companies ranging from startups to Fortune 500 enterprises.
Recommended AI Tools
Zapier
Free & PaidNo-code automation platform connecting AI tools with your marketing stack.
AutomationChatGPT
Free & PaidAI-powered conversational assistant for content creation, research, and marketing copy.
ContentClaude
Free & PaidAnthropic's advanced AI assistant for analysis, writing, and complex marketing tasks.
Content