Inicio rápido

Esta guía cubre todas las características de n8n:
- Empezando — Crear cuenta y configuración básica
- Cómo utilizar la depuración avanzada — Replay past executions and pin data to fix broken workflows fast
- Cómo utilizar el prototipado de backend de SaaS — Build API backends and test business logic without server code
- Cómo utilizar implementaciones seguras — Deploy n8n on locked-down infrastructure with SSO and encrypted secrets
- Cómo utilizar la construcción visual — Create workflows by dragging and connecting nodes on a visual canvas
- Cómo utilizar las plantillas de automatización de flujos de trabajo — Skip blank-canvas setup with ready-made workflows for common tasks
- How to Use 5103 Automation Templates — Browse 5,103 community-built automations for nearly any use case
- Cómo utilizar las herramientas de agente de varios pasos — Build AI agents that call tools and finish multi-step tasks
- Cómo utilizar la automatización integrada — Offer white-label automation inside your own product
- How to Use Self-host — Run n8n on your own server so your own data stays private
Use this table of contents to jump straight to any section.
Tiempo necesario: 5 minutos por función
También en esta guía: Consejos profesionales | Errores comunes | Solución de problemas | Precios | Alternativas
¿Por qué confiar en esta guía?
I’ve used n8n for six months and tested every feature covered here.
Este tutorial se basa en experiencia práctica real, no en publicidad engañosa ni en capturas de pantalla de proveedores.

n8n es uno de los flujos de trabajo más potentes automatización herramientas disponibles hoy en día.
Pero la mayoría de los usuarios solo aprovechan una pequeña parte de lo que puede hacer.
This guide shows you exactly how to use n8n, feature by feature.
Paso a paso, con capturas de pantalla y consejos profesionales.
Tutorial de n8n
This complete How to Use n8n tutorial covers setup, every major feature, and advanced power-user tips.
No coding knowledge is required to follow along.

n8n
Automate work across 400+ apps, with real code when you need it. Self-host free or launch in the cloud in minutes. No credit card required.
Primeros pasos con n8n
Antes de utilizar cualquier función, complete esta configuración inicial.
Tarda unos 3 minutos.
Here’s a look from my own setup:

Ahora vamos a repasar cada paso.
Paso 1: Crea tu cuenta
Go to the n8n website and click “Get started.”
Sign up with your email and create a password.
Every new n8n Cloud account starts with a free trial.
✓ Control: Comprueba tu bandeja de entrada para recibir un correo electrónico de confirmación.
Paso 2: Descarga o accede a la aplicación.
Cloud users can skip installs and open the editor in the browser.
Prefer local? With Node.js on your machine, n8n launches from the terminal.
Or deploy with Docker for a persistent setup that saves everything automatically.
Inicia sesión con tu nueva cuenta.
Así es como se ve el panel de control:

✓ Control: You should see the main canvas, ready for your first workflow.
Paso 3: Completar la configuración inicial
Create a project to group related workflows.
Add credentials for apps like Gmail and Slack under Settings.
Test the connection before saving each one.
The docs and community resources help you learn the basics fast.
✅ Hecho: Estás listo para usar cualquiera de las funciones a continuación.
Cómo usar la potente herramienta de depuración n8n
Depuración potente lets you replay past executions and pin data to fix broken workflows fast.
Aquí te mostramos cómo usarlo paso a paso.
Step 1: Open the Executions Panel
Select “Executions” in the left sidebar of the editor.
Every past run is stored here with full input and output data.
Step 2: Inspect a Failed Run
Click any red execution to see exactly which node failed.
Así es como se ve:

✓ Control: You can read the error message and the data at each step.
Step 3: Pin Data and Retry
Use a feature called Data Pinning to freeze real sample data.
Re-run the workflow against that pinned data until your fix works.
✅ Resultado: You can debug without waiting for new live events to arrive.
💡 Consejo profesional: Copy a production execution into the editor to test edge cases safely.
Cómo usar el prototipado de backend SaaS de n8n
Prototipado de backend SaaS lets you build API backends and test negocio logic without server code.
Aquí te mostramos cómo usarlo paso a paso.
Step 1: Add a Webhook Trigger
Create a new workflow and choose the Webhook node as your trigger.
This gives you a URL your app or script can call.
Step 2: Build the Logic
Chain nodes for data transformation, database writes, and outside API calls.
Add conditional logic and custom code nodes for the tricky cases.
A Code node runs JavaScript or Python scripts inline.
Así es como se ve:

✓ Control: Calling the test URL returns data from your workflow.
Step 3: Send the Response
Add the Respond to Webhook node to send results back.
✅ Resultado: You have a working backend prototype with zero server code.
💡 Consejo profesional: Validate your SaaS idea here first, then harden it for production later.
Cómo utilizar las implementaciones seguras de n8n
Implementaciones seguras lets you deploy n8n on locked-down infrastructure with SSO and encrypted secrets.
Aquí te mostramos cómo usarlo paso a paso.
Step 1: Choose Your Environment
Pick a fully on-prem option when sensitive data must stay private.
Regulated industries get compliance without giving up automation.
Step 2: Configure Access
Set up SSO SAML or LDAP so teams log in safely.
Advanced RBAC permissions control who can access each workflow.
Así es como se ve:

✓ Control: Team members see only the projects they’re allowed to touch.
Step 3: Lock Down Secrets
Store API keys in the encrypted secret store.
Permitir auditoría logging so every change is tracked.
✅ Resultado: Teams share workflows safely across the org with full access control.
💡 Consejo profesional: Stream logs to the third-party tools your security team already watches.
How to Use n8n Visual Builder
Edificio visual lets you create workflows by dragging and connecting nodes on a visual canvas.
Aquí te mostramos cómo usarlo paso a paso.
Step 1: Add a Trigger
Every workflow starts with a trigger that decides when it runs.
Pick a Schedule, a Webhook, or an app event.
Example: run every morning, or fire when a Gmail message arrives.
Paso 2: Conecte sus nodos
Press Tab, then type to start searching for any node.
Drag nodes onto the canvas and connect them in order.
Así es como se ve:

✓ Control: Connected nodes show a line between them on the canvas.
Paso 3: Probar el flujo de trabajo
Execute the workflow to test that it works as expected.
Green output on each node means data flowed through correctly.
✅ Resultado: You built your first automation — and this saves hours every week.
💡 Consejo profesional: Use expressions like {{ $json.email }} to map data between apps.
Cómo usar las plantillas de automatización de flujos de trabajo de n8n
Plantillas de automatización de flujos de trabajo lets you skip blank-canvas setup with ready-made workflows for common tasks.
Aquí te mostramos cómo usarlo paso a paso.
Paso 1: Abra la galería de plantillas.
Click “Templates” from the canvas, or browse n8n’s template site.
Step 2: Pick a Starting Point
Search by app, like Gmail or Sheets, to filter results.
Así es como se ve:

✓ Control: The template opens on your canvas with nodes pre-connected.
Paso 3: Personalizar y activar
Swap the example credentials for your own accounts.
Adjust fields, then activate the workflow when it tests clean.
✅ Resultado: A proven automation is running in minutes, not hours.
💡 Consejo profesional: Templates double as free lessons in how experienced constructores structure workflows.
How to Use n8n 5103 Automation Templates
5103 Automation Templates lets you browse 5,103 community-built automations for nearly any use case.
Aquí te mostramos cómo usarlo paso a paso.
Step 1: Browse the Full Library
The community has shared 5,103 automation templates and counting.
Paso 2: Filtrar por categoría
Narrow by AI, marketing, DevOps, or other negocio categories.
Así es como se ve:

✓ Control: Each listing shows the apps and nodes it uses.
Step 3: Import With One Click
Click “Use workflow” to copy it into your own instance.
✅ Resultado: You rarely start from zero, whatever you want to automate.
💡 Consejo profesional: Import an advanced template just to learn its node patterns.
Cómo usar las herramientas de agente de varios pasos de n8n
Herramientas de agente de varios pasos lets you build AI agents that call tools and finish multi-step tasks.
Aquí te mostramos cómo usarlo paso a paso.
Step 1: Add the AI Agent Node
The AI Agent node is the core of adding AI here.
An agent builds on large language models, which predict the next word.
On the canvas, it’s a node with some extra connections.
Step 2: Attach a Chat Model
Agents require a chat model to process the incoming prompts.
Integrate your own OpenAI key, run local models, or use third-party APIs.
Así es como se ve:

✓ Control: Sending a chat message returns a model-generated reply.
Step 3: Connect Tools and Memory
Attach tools the agent can call, like Gmail or HTTP Request.
Add memory to the agent to preserve context across a conversation.
✅ Resultado: You design AI workflows visually while the AI handles the heavy lifting.
💡 Consejo profesional: n8n has native support for connecting AI models, LLMs, and LangChain tools.
Cómo usar la automatización integrada de n8n
Automatización integrada lets you offer white-label automation inside your own product.
Aquí te mostramos cómo usarlo paso a paso.
Step 1: License the Embed Edition
Contact n8n about Embed to license the white-label edition.
Step 2: Match Your Brand
Configure colors and your logo so the editor feels native.
Así es como se ve:

✓ Control: Your customers see your brand, not n8n’s.
Step 3: Ship It to Customers
Users automate inside your app, with n8n running underneath.
✅ Resultado: You added an automation feature without building one from scratch.
💡 Consejo profesional: Curate the visible nodes so customers get a simple, focused editor.
How to Use n8n Self-host
Self-host lets you run n8n on your own server so your own data stays private.
Aquí te mostramos cómo usarlo paso a paso.
Step 1: Install Locally
With Node.js installed, launch n8n straight from your terminal.
Because it’s open source, you can inspect and modify everything.
Step 2: Deploy With Docker
Use Docker for a persistent setup on your own infrastructure.
Your data and workflows are saved automatically between restarts.
Así es como se ve:

✓ Control: Your self-hosted instance loads at your server’s address.
Step 3: Move to Production
Point a domain at the instance and activate your workflows.
✅ Resultado: Your own data never leaves your environment.
💡 Consejo profesional: Self-hosting pairs privacy with full freedom to change the code.
Consejos y atajos profesionales de n8n
After testing n8n for six months, here are my best tips.
Atajos de teclado
| Acción | Atajo |
|---|---|
| Add a node | Pestaña |
| Guardar flujo de trabajo | Ctrl + S |
| Seleccionar todos los nodos | Ctrl + A |
| Duplicate selection | Ctrl + D |
Características ocultas que la mayoría de la gente pasa por alto
- Workflow History: Open a workflow’s history to roll back any breaking edit.
- Variables personalizadas: Set shared values once, then reference them in any expression.
- Git Control: Push changes to GitHub and promote them through isolated environments.
Errores comunes que se deben evitar
Mistake #1: Executing Blind
❌ Incorrecto: Wiring up ten nodes, then running the complete workflow untested.
✅ Derecha: Test each node as you build so errors surface temprano.
Mistake #2: Hardcoding Secrets
❌ Incorrecto: Pasting API keys and passwords straight into node fields.
✅ Derecha: Use credentials and custom variables so nothing sensitive sits in plain texto.
Mistake #3: Skipping Error Handling
❌ Incorrecto: Letting one failed API call silently kill the whole automation.
✅ Derecha: Add an Error Trigger workflow so failures alert you immediately.
Solución de problemas de n8n
Problem: Webhook Not Firing
Causa: Test webhook URLs stop listening after a single execution.
Arreglar: Activate the workflow, then call the production URL instead.
Problem: IF Node Skips a Branch
Causa: The conditional logic points at an empty or misspelled field.
Arreglar: Pin sample data, then check your expressions against both paths.
Problem: Rate Limit Errors
Causa: Loops send too many requests per minute to one API.
Arreglar: Add a Wait node between calls and batch items to stay efficient.
📌 Nota: If none of these fix your issue, contact n8n support.
¿Qué es n8n?
n8n is an open-source workflow automation tool that gives you both control and simplicity.
Think of it like programmable plumbing between the apps and systems you already use.
Nodes perform the actions, and triggers decide when each workflow runs.
It supports over four hundred integrations out of the box, no code needed.
Mira este breve vídeo resumen:
Incluye estas características clave:
- Depuración potente: Replay past executions and pin data to fix broken workflows fast.
- Prototipado de backend SaaS: Build API backends and test business logic without server code.
- Implementaciones seguras: Deploy n8n on locked-down infrastructure with SSO and encrypted secrets.
- Edificio visual: Create workflows by dragging and connecting nodes on a visual canvas.
- Workflow Automation Templates: Skip blank-canvas setup with ready-made workflows for common tasks.
- 5103 Automation Templates: Browse 5,103 community-built automations for nearly any use case.
- Herramientas de agente de varios pasos: Build AI agents that call tools and finish multi-step tasks.
- Automatización integrada: Offer white-label automation inside your own product.
- Self-host: Run n8n on your own server so your own data stays private.
Beginners stay no-code, while technical teams drop into full code anywhere.
Para una revisión completa, consulte nuestra Reseña de n8n.

Precios n8n
Esto es lo que cuesta n8n en 2026:
| Plan | Precio | Mejor para |
|---|---|---|
| Motor de arranque | $20 por mes | Solo builders automating personal and business tasks |
| Pro | $50 por mes | Growing teams running many active workflows |
| Empresa | Precios personalizados | Large orgs needing SSO, audit logs, and on-prem hosting |
Prueba gratuita: Yes — n8n Cloud starts with a free trial. The Community edition is free to self-host.
Garantía de devolución de dinero: No formal guarantee, so test on the trial or the free Community edition.

💰 Mejor relación calidad-precio: Pro — more active workflows and concurrent executions for busy teams.
n8n vs. Alternativas
¿Cómo se compara n8n? Este es el panorama competitivo:
| Herramienta | Mejor para | Precio | Clasificación |
|---|---|---|---|
| n8n | Technical teams, self-hosting | $20/mes | ⭐ 4.5 |
| Zapier | Beginners, most apps | $19.99/mes | ⭐ 4.5 |
| Hacer | Visual budget automation | $9/mes | ⭐ 4.6 |
| Pabbly | Flat-rate value | $16/mes | ⭐ 4.5 |
| Estudio mental | Aplicación de inteligencia artificial edificio | $23/mes | ⭐ 4.4 |
| Bucle de goma | AI agent flows | $97/mes | ⭐ 4.4 |
| Replit | Custom app coding | $25/mes | ⭐ 4.5 |
| Google Opal | Free mini AI apps | Gratis | ⭐ 4.2 |
Selecciones rápidas:
- Mejor en general: n8n — code freedom, 400+ integrations, and self-hosting in one tool
- Mejor presupuesto: Make — generous free tier and a $9 entry plan
- Ideal para principiantes: Zapier — simplest setup with the biggest app directory
- Ideal para agentes de IA: Gumloop — drag-and-drop agent building without infrastructure
🎯 Alternativas n8n
¿Buscas alternativas al n8n? Aquí tienes las mejores opciones:
- 🚀 Zapier: The biggest app directory in automation; non-technical teams get simple triggers working in minutes.
- 💰 Hacer: Visual scenario builder with a generous free tier and strong data transformation at lower prices.
- ⚡ Pabbly: Fixed pricing with unlimited workflows on paid plans; a favorite for cost-conscious pequeñas empresas.
- 🧠 Estudio mental: Publish polished AI apps and agents quickly without managing any infrastructure.
- 🎨 Flowith: Canvas-style AI workspace built for creative, multi-threaded generation work.
- 🔥 Bucle de goma: AI-first automation with drag-and-drop agent flows aimed at ops teams.
- ⭐ Lutra: Turns plain-English instructions into automations that run across your everyday apps.
- 🔧 Replit: An AI coding workspace for building full custom apps when automation alone isn’t enough.
- 🌟 Google Opal: A free Google Labs experiment for building shareable mini AI apps with natural language.
⚔️ n8n Comparado
Así es como n8n se compara con cada competidor:
- n8n vs Zapier: Zapier wins on app count and polish; n8n wins on price, code freedom, and hosting control. Power users usually land on n8n.
- n8n vs Make: Make feels friendlier for visual thinkers; n8n handles complex branching, custom scripts, and self-hosted privacy better.
- n8n contra Pabbly: Pabbly wins on flat pricing for simple tasks; n8n is far stronger for advanced, multi-step logic.
- n8n vs MindStudio: MindStudio ships customer-facing AI apps faster; n8n connects those same models to deeper backend automation.
- n8n contra Flowith: Flowith suits open-ended creative AI sessions; n8n suits production automation with triggers, schedules, and APIs.
- n8n contra Gumloop: Gumloop makes agent building effortless; n8n counters with 400+ integrations and full hosting control.
- n8n contra Lutra: Lutra automates from plain English fast; n8n gives more control once workflows grow complex.
- n8n vs Replit: Replit builds custom software from scratch; n8n automates between existing apps with far less effort.
- n8n vs Google Opal: Opal is a fun free experiment; n8n is a production platform with real deployment options.
Para ver la lista completa, consulte nuestra alternativas n8n guía.
Empiece a usar n8n ahora
Aprendiste a usar todas las funciones principales de n8n:
- ✅ Potente depuración
- ✅ Prototipado de backend SaaS
- ✅ Implementaciones seguras
- ✅ Edificio Visual
- ✅ Plantillas de automatización de flujos de trabajo
- ✅ 5103 Automation Templates
- ✅ Herramientas de agente de varios pasos
- ✅ Automatización integrada
- ✅ Self-host
Siguiente paso: Elige una función y pruébala ahora.
La mayoría de la gente empieza con la construcción visual.
Tarda menos de 5 minutos.
Preguntas frecuentes
¿Para qué se utiliza n8n?
n8n automates work between apps. It links triggers, data transformation, AI models, and conditional logic into workflows. These run automatically, from simple Gmail alerts to complex business processes.
¿Qué significan las siglas n8n?
n8n is short for “nodemation” — nodes plus automation. There are eight letters between the first and last n. That’s where the 8 comes from.
¿n8n es de uso gratuito?
Yes. The open-source Community edition is free to self-host forever. n8n Cloud starts at $20 per month after a free trial.
¿Es n8n mejor que Zapier?
For technical teams, usually yes. n8n costs less at scale and allows custom code plus self-hosting. Zapier stays easier for beginners wanting quick setup.
¿N8N está basado en la nube?
Both. Use managed n8n Cloud for zero maintenance. Or self-host with Docker on your own infrastructure so sensitive data never leaves your environment.













