What is Make.com?
Make.com (formerly known as Integromat until 2022) is a visual automation platform that lets you connect apps and build automated workflows โ called "scenarios" โ without writing code. Think of it as a flowchart where each shape is an app or action, and data flows between them.
What sets Make.com apart from other automation tools is its visual canvas. You can see exactly how data flows through your automation, branch into multiple paths, and handle complex logic โ all visually, without any linear limitations.
- 1,500+ app integrations โ Google Workspace, Slack, HubSpot, Salesforce, and more
- Visual scenario builder โ the most intuitive interface in the category
- Operations-based pricing โ often 3โ5x cheaper than Zapier for complex workflows
- Data stores โ built-in key-value storage for state management between runs
Make vs Zapier vs n8n: Quick Comparison
| Feature | Make.com | Zapier | n8n |
|---|---|---|---|
| Free tier | 1,000 ops/mo | 100 tasks/mo | Unlimited |
| Paid from | $10.59/mo | $29.99/mo | $20/mo |
| Visual interface | Excellent | Good | Good |
| AI capabilities | Via HTTP | Basic | Native nodes |
| Learning curve | Low | Very low | Medium |
Make is the best choice for visual learners who need more power than Zapier but aren't ready for n8n's complexity. See our full Zapier vs Make vs n8n comparison for the detailed breakdown.
Account Setup and Free Plan
Getting started with Make.com is free:
- Go to make.com and click "Get started free"
- Create an account with email or Google
- You're in! No credit card required for the free plan
Free plan limits: 1,000 operations/month, 2 active scenarios, minimum 15-minute scheduled intervals. This is enough to automate a couple of workflows and learn the platform thoroughly before committing.
Creating Your First Scenario
A "scenario" is Make's word for an automation workflow. Let's build a simple one: when someone fills out a Google Form, add them to a Google Sheet and send them a welcome email.
- Click Create a new scenario
- Click the + button in the canvas to add your first module
- Search for Google Forms and select "Watch Responses"
- Connect your Google account
- Select your form
- Click the + after the Google Forms module and add Google Sheets โ "Add a Row"
- Map the form fields to your spreadsheet columns
- Click + again and add Gmail โ "Send an Email"
- Use form response data to personalize the email
- Click Run Once to test, then Scheduling to activate
Understanding Modules and Bundles
In Make, everything is a module. Each module performs one action:
- Trigger modules (lightning bolt icon) โ start the scenario. Examples: Watch Gmail for new emails, Watch a Webhook, Schedule.
- Action modules โ do something. Examples: Create Row in Sheet, Send Slack message, HTTP Request.
- Search modules โ look something up. Examples: Search HubSpot contact, Find Google Drive file.
A bundle is one item of data processed through the scenario. If your trigger finds 5 new form responses, that creates 5 bundles โ and all subsequent modules run 5 times, once for each bundle. This is counted as 5 operations per module.
Filters and Routes
Make's most powerful features are filters and routes โ they let you branch your automation based on conditions.
Filters
Click the wrench icon between two modules to add a filter. Only bundles matching the condition pass through. Example: only process emails from a specific domain, only process orders over โฌ100.
Routers
A router splits your data flow into multiple paths. Add a router module (from the + button), then connect multiple branches. Each branch has its own filter. Example:
- Branch 1: If inquiry type = "Support" โ Create Zendesk ticket
- Branch 2: If inquiry type = "Sales" โ Add to HubSpot pipeline
- Branch 3: Fallback โ Send to general inbox
Error Handling
Production scenarios need error handling. In Make, click the module โ Advanced settings โ Add an error handler:
- Resume โ skip the error and continue with the next bundle
- Ignore โ ignore the error completely (use cautiously)
- Break โ stop the scenario and mark as incomplete for retry
- Rollback โ undo all changes in the current run (for transactional scenarios)
Make + AI: OpenAI and Claude Integrations
Make connects to AI models primarily through the HTTP module or dedicated OpenAI module:
Using the OpenAI Module
- Search for OpenAI (ChatGPT) in the module list
- Select Create a Completion
- Connect your OpenAI API key
- Set model (gpt-4o-mini), temperature, and your prompt
- Use the response text in subsequent modules
Example: AI-Powered Slack Notification
Trigger: Gmail - Watch Emails (every 15 min)
Filter: Email is NOT from internal domain
โ
Module: OpenAI - Create Completion
Model: gpt-4o-mini
Prompt: "Summarize this email in one sentence:
Subject: {{subject}}
From: {{from}}
Body: {{snippet}}"
โ
Module: Slack - Send a Message
Channel: #inbox-alerts
Message: "๐ง New email from {{from}}
Summary: {{openai_response}}
Subject: {{subject}}"Real Example 1: Lead Capture to CRM
Build a scenario that processes new leads from your website contact form:
- Webhook trigger โ receives form submission data
- OpenAI โ classify lead type (enterprise/SMB/individual) based on company name and message
- Router โ split by lead type
- Branch: Enterprise โ Create HubSpot deal in Enterprise pipeline + Slack notification to sales
- Branch: SMB โ Add to HubSpot contacts + Add to email nurture sequence
- All branches โ Send confirmation email to lead
Real Example 2: Slack Notification Bot
Get daily summaries of key business metrics in Slack:
Schedule: Daily 9am
โ
Module: Google Sheets - Get Multiple Rows
Read: Yesterday's orders, revenue, support tickets
โ
Module: OpenAI - Create Completion
"Generate a brief business summary in emoji format:
Orders: {{orders}}
Revenue: {{revenue}}
Support tickets: {{tickets}}
Write as a daily briefing (3 bullet points max)"
โ
Module: Slack - Send a Message
Channel: #daily-briefing
Message: ๐ Daily Business Summary
{{openai_response}}Pricing Guide
- Free: 1,000 ops, 2 active scenarios, 15-min minimum scheduling
- Core ($10.59/mo): 10,000 ops, unlimited scenarios, 1-min scheduling
- Pro ($18.82/mo): 10,000 ops + custom apps, real-time triggers, priority execution
- Teams ($34.12/mo): 10,000 ops + team features, shared connections
- Enterprise (custom): Dedicated infrastructure, SLA, custom limits
When to Upgrade to n8n
Make.com is excellent for most automation needs, but consider switching to or adding n8n when:
- You need to build AI agents with memory and tool use
- Your operation count exceeds 50,000/month (cost becomes significant)
- You need custom JavaScript logic
- GDPR or data sovereignty requires on-premise processing
- You're building complex, multi-step AI pipelines
Many professionals use both platforms โ Make for visual client-facing workflows, n8n for AI-heavy backend processing. Learn n8n properly with our AI Chatbot course (โฌ59)and you'll have the perfect combination for any automation project.