Skip to main content
use-apify.com

n8n: guides & tutorials

n8n workflows for web data: HTTP nodes, webhooks, and Apify API runs in one canvas—self-host when you need control and ship JSON to databases or Slack.

10 articles

View all tags

n8n is a workflow tool you can self-host, with HTTP nodes, webhooks, and Apify API calls on one canvas. These guides cover building data pipelines that run Apify actors and ship JSON to databases or Slack.

n8n appeals to teams that want automation control and the option to host it themselves. Below you will find tutorials for triggering Apify from n8n, handling webhook responses, and routing results downstream.

Related topics

Self-hosting8 min read

5 Self-Hosted Zapier Alternatives for Workflow Automation (2026)

· 8 min read
Yassine El Haddad
Software Developer & Automation Specialist

Zapier Pro costs $69/month for 2,000 tasks and 20 Zaps. Hit your task cap mid-month and your workflows stop running until the next billing cycle — or you upgrade to the $103/month Team plan. If your automation volume is growing or your workflows touch internal systems and proprietary data, a self-hosted alternative gives you unlimited executions, full control over credentials and API keys, and a fixed monthly VPS cost that doesn't scale with task count.

Self-hosting16 min read

n8n + LiteLLM + Twenty CRM: AI-Augmented Sales Workflows on Liquid Web (2026)

· 16 min read
Yassine El Haddad
Software Developer & Automation Specialist

TL;DR

  • One docker-compose.yml: n8n + LiteLLM + Twenty CRM + shared PostgreSQL + Redis + Caddy
  • Measured idle RAM: ~1.7 GB; peak: ~2.5 GB (parallel workflow executions with live LiteLLM calls)
  • Minimum Liquid Web tier: 8 GB Managed VPS (~$33–$40/mo)
  • Zapier Pro + unmanaged OpenAI API + HubSpot Starter: ~$69 + variable + $50/mo vs ~$33/mo self-hosted

Most sales teams that want AI-augmented automation end up in one of two bad places: paying for Zapier Pro, a direct OpenAI API key they can't audit, and HubSpot CRM — three separate subscriptions that don't compose well and bill regardless of usage. Or they write fragile Python scripts that break on every API change and nobody wants to maintain.

This guide deploys the middle path: Twenty CRM for pipeline management, n8n for visual workflow automation, and LiteLLM as an OpenAI-compatible AI proxy — all on a single Liquid Web 8 GB VPS. n8n calls LiteLLM for every AI task (lead enrichment summaries, proposal draft generation, inbound form classification), and LiteLLM provides budget caps, model fallbacks, and a unified request log.

Apify8 min read

Build an AI-Powered Competitive Intelligence Dashboard (Claude + Apify + n8n)

· 8 min read
Yassine El Haddad
Software Developer & Automation Specialist

Enterprise competitive intelligence tools — Crayon, Klue, Kompyte, Similarweb — charge $300–$2,000/month (quote-based, plan-dependent) for competitive monitoring dashboards. This same monitoring can be built with Apify for data collection, Claude for analysis, n8n for orchestration, and a free dashboard — for under $50/month (starting cost; scales with competitor count, Actor fees, and proxy usage).

This guide builds it step by step: from identifying what to monitor, to automated daily scrapes, to AI-powered change detection that alerts your team in Slack when competitors make moves that matter.

TL;DR:

ComponentToolCost
Data collectionApify (5 competitors, daily)~$30/mo
AnalysisClaude API (change detection, summarization)~$5–15/mo
Orchestrationn8n (self-hosted)$0
DashboardGoogle Sheets or Grafana$0
AlertsSlack webhooks$0
Total~$35–45/mo
Self-hosted AI13 min read

The $20/Month AI Operations Stack: Self-Host Ollama + n8n + Coolify on a VPS

· 13 min read
Yassine El Haddad
Software Developer & Automation Specialist

Cloud API costs scale linearly with usage. Self-hosting Ollama + n8n + Coolify on a $20/month VPS removes per-token fees for local Ollama inference — you still pay for the VPS, bandwidth, and your time; throughput is limited by CPU/RAM. When workflows call Apify, email, or other SaaS APIs, data transits those providers — not only your server.

This guide covers the complete setup from bare VPS to production-ready AI pipeline, with official documentation links for every step.

TL;DR:

ComponentRoleOfficial docs
CoolifyInfrastructure manager (replaces Heroku/Vercel for self-hosting)coolify.io/docs
OllamaLocal LLM inference (Llama 3.1, Mistral, DeepSeek)ollama.com
n8nWorkflow orchestration (visual automation)docs.n8n.io
QdrantVector database for AI memory/RAG (Retrieval-Augmented Generation)qdrant.tech/documentation
PostgreSQLStructured data storagepostgresql.org

Prerequisites:

  • A VPS with 4+ CPU cores, 8+ GB RAM, 80+ GB SSD ($16–$25/month range). Minimum 8 GB RAM required for running Llama 3.1 8B comfortably alongside n8n.
  • A domain name pointed to the VPS IP
  • Basic terminal/SSH knowledge
  • 30–60 minutes of setup time
Automation8 min read

n8n, Dify, and Ollama: The 2026 Open-Source Automation Stack

· 8 min read
Yassine El Haddad
Software Developer & Automation Specialist

The n8n + Dify + Ollama stack is a common 2026 self-hosted pattern for teams that want open-source control over automation, LLM apps, and where models run: n8n runs event-driven workflows across SaaS and APIs; Dify ships LLM apps, agents, and knowledge bases; Ollama exposes a local OpenAI-compatible inference API on your hardware. None fully replaces the others, but teams often blur which layer owns which job.

This article maps each tool’s role, where capabilities overlap, how they compose into one architecture versus compete for the same budget and headcount, and a practical deployment roadmap you can adapt from a laptop toward production.

For how agent runtimes, MCP, and infra headlines affect wiring choices like these, see Top 10 AI and tech stories this week (March 17–24, 2026).

AI7 min read

ComfyUI + n8n: Automate AI Image Generation Workflows (2026)

· 7 min read
Yassine El Haddad
Software Developer & Automation Specialist

Trigger ComfyUI from n8n, generate images, and send them to Slack, S3, or your CMS. No manual clicking. This guide covers the ComfyUI API mode, building n8n workflows with HTTP Request nodes, dynamic prompts, batch generation, error handling, and the Make.com alternative. ComfyUI must be running with --listen to accept API requests — see ComfyUI on a cloud GPU for setup.

Apify3 min read

n8n + Apify Integration Guide: Automate Web Scraping Workflows (2026)

· 3 min read
Yassine El Haddad
Software Developer & Automation Specialist

n8n is an open-source workflow automation tool. Apify provides cloud-hosted web scraping Actors. Together they form a powerful pipeline: Apify collects data, n8n orchestrates where it goes next — Google Sheets, Slack, databases, AI models, or downstream APIs.

This guide shows three integration patterns with working node configurations.

Automation7 min read

n8n vs Make vs Zapier in 2026: Workflow Automation Platforms Compared

· 7 min read
Yassine El Haddad
Software Developer & Automation Specialist

TL;DR by persona: Developers → n8n (self-host, Code nodes). Non-technical teams → Make.com (visual, affordable, AI). Maximum app coverage → Zapier (6,000+ apps, easiest). Startups watching cost → Make or self-hosted n8n. Enterprise → Zapier or Make with support contracts.

All three are visual, node-based automation platforms. They differ sharply on pricing, self-hosting, code support, and target user. This guide helps you choose and migrate.

Apify4 min read

Apify n8n Integration: Complete Guide (Actors, Datasets & Workflows)

· 4 min read
Yassine El Haddad
Software Developer & Automation Specialist

n8n is a workflow automation tool that pairs well with Apify because it handles long-running jobs, large JSON payloads, and branching logic without the tight synchronous limits of simpler connectors. This guide covers setup, the official Apify node, webhook patterns for slow Actors, example workflows, and operational tips.

Quick Answer

Apify integrates with n8n via the official Apify node. Trigger Actor runs, read datasets, and build automated data pipelines without writing code.

Guides on this site

Frequently asked questions

Frequently Asked Questions

n8n is a self-hostable automation platform similar to Make.com but open-source. Pair it with Apify to run scrapers on a schedule and push results to a database, trigger alerts when an actor returns new data, route extracted leads into HubSpot or a CRM, or build daily briefing workflows that scrape news and email a summary. Because n8n is self-hosted, sensitive data never leaves your infrastructure.

n8n is open-source and self-hostable — no per-operation pricing cliffs, and data stays on your own servers, which matters for compliance-sensitive pipelines. JavaScript function nodes also give more transformation flexibility than visual builders. The tradeoff is setup overhead; hosted n8n.cloud removes that but adds usage costs. Choose n8n when data control or operation volume are constraints.

Use the HTTP Request node in n8n to call Apify's REST API: POST to the actor run endpoint with your Apify token in the Authorization header. For results, configure an Apify webhook that hits an n8n webhook trigger URL when a run completes. The actor-run-completed webhook pattern is the most reliable approach for production workflows.

Yes — n8n is open-source and free to self-host. You need a server (a $5–10/month VPS works for most workloads), Docker or Node.js, and about an hour to configure TLS and authentication properly. If you want n8n deployed, secured, and documented on your own server in 1–3 days without doing it yourself, this site offers an n8n deployment service starting at $149.