Setting Up Make and Zapier
Before building AI automations, you need to set up your accounts and understand how each platform works. This lesson walks you through getting started with both Make and Zapier.
Creating Your Accounts
Zapier Setup
- Go to zapier.com and click "Sign up free"
- Create an account with your email or Google account
- You will land on the Zapier dashboard
The free plan gives you 100 tasks per month, but it is limited to two-step Zaps (one trigger + one action). That is enough for the setup test and the simpler examples in this course, but the bigger builds (like the social media generator, which chains several steps together) require a paid Zapier plan or the 14-day free trial.
Good news: Make's free plan does not have this restriction — you can build multi-step scenarios for free. Whenever a lesson's Zapier version needs a paid plan, the Make version of the same workflow works on the free tier, so you can always follow along without paying.
Make Setup
- Go to make.com and click "Get started free"
- Create an account with your email or Google account
- You will land on the Make dashboard
The free plan gives you 1,000 operations per month and 2 active scenarios. Plenty for learning.
Disclosure: FreeAcademy is a Make affiliate. If you create your account through this link, we may earn a commission at no extra cost to you. It helps keep our courses free.
Getting Your AI API Key
To connect AI to your automations, you need an API key. We will use OpenAI (ChatGPT) as the primary example, but the same concepts apply to Anthropic (Claude) and other providers.
OpenAI API Key
- Go to platform.openai.com
- Sign in or create an account (separate from your ChatGPT account)
- Navigate to API Keys in the left sidebar
- Click "Create new secret key"
- Give it a name like "Make-Zapier-Automations"
- Copy the key immediately (you will not see it again)
Important — buy credits first, or your key will not work. New OpenAI accounts no longer include free trial credit. Before your API key can make a single call, go to Settings → Billing, add a payment method, and purchase at least $5 of credits. If you skip this, every automation will fail with a 429 insufficient_quota error even though your key is valid — this is the single most common setup problem, and the error message does not make the cause obvious.
The API is pay-per-use, but for this course $5-10 covers everything many times over. To be safe, also set a monthly budget under Settings → Limits so you can never be charged more than you expect.
Anthropic API Key (Optional)
- Go to console.anthropic.com
- Sign in or create an account
- Navigate to API Keys
- Click "Create Key"
- Copy and store it securely
Navigating Zapier
The Zapier Dashboard
When you log in, you will see:
- Home - Overview of your Zaps and recent activity
- Zaps - All your automated workflows
- Tables - Zapier's built-in database (useful for storing data between runs)
- Interfaces - Forms and pages that can trigger Zaps
Creating Your First Zap
- Click the "+ Create" button, then select "New Zap"
- You will see the Zap editor with two blocks: Trigger and Action
- Click the Trigger block to choose the app that starts your workflow
- Click the Action block to choose what happens next
Key Zapier Concepts
- Trigger - The event that starts a Zap (e.g., "New Email in Gmail")
- Action - A task the Zap performs (e.g., "Send Message in Slack")
- Filter - A condition that decides if the Zap should continue
- Path - Branching logic (available on paid plans)
- Formatter - Built-in tools for transforming text, numbers, and dates
Navigating Make
The Make Dashboard
When you log in, you will see:
- Scenarios - Your automated workflows
- Templates - Pre-built workflows you can customize
- Connections - Your linked apps and API keys
- Devices - Webhooks and custom integrations
Creating Your First Scenario
- Click "Create a new scenario"
- You will see a blank canvas with a "+" button in the center
- Click "+" to add your first module (the trigger)
- Click the wrench icon on the module to configure it
- Click the "+" connector that appears to add the next module
Key Make Concepts
- Module - A single app action (trigger or action) represented as a circle on the canvas
- Connection - A saved authentication for an app (set up once, reuse across scenarios)
- Router - Splits the workflow into multiple paths
- Filter - A condition between two modules that controls data flow
- Iterator - Processes arrays one item at a time
- Aggregator - Combines multiple items back into one
Setting Up Your AI Connection
In Zapier
- Create a new Zap
- For any action step, search for "OpenAI (GPT, DALL-E, Whisper)"
- Select an action like "Conversation"
- Zapier will ask you to sign in to OpenAI
- Paste your API key when prompted
- The connection is saved for future Zaps
In Make
- Create a new scenario
- Click "+" and search for "OpenAI (ChatGPT, DALL-E, Whisper)"
- Select a module like "Create a Completion"
- Click "Add" next to the Connection field
- Paste your API key
- Click "Save"
- The connection is saved for future scenarios
Quick Test: Verify Your Setup
Let's verify everything works with a simple test.
A Note About All the Extra Fields
When you open an AI action in Zapier or Make, you will see far more fields than any lesson mentions: memory keys, assistant instructions, top P, frequency penalty, stop sequences, and more. This is normal, and you can safely leave every field we don't mention at its default (or blank). Only two fields ever need your attention to get a working automation:
- Model — which AI model answers (pick a current, inexpensive one like gpt-4o-mini if the lesson doesn't say)
- Prompt / User Message — what you ask it
Everything else is optional fine-tuning. Throughout this course, if a step doesn't tell you to fill in a field, leave it alone — the automation will work.
Zapier Quick Test
- Create a new Zap
- Trigger: Choose "Schedule by Zapier" → "Every Day"
- Action: Choose "OpenAI" → "Conversation"
- Model: pick gpt-4o-mini (or the default)
- User Message: "Say hello in one sentence" — leave all other fields at their defaults
- Click "Test action"
- If you see a response from ChatGPT, your setup is complete
Make Quick Test
- Create a new scenario
- Add a module: "OpenAI" → "Create a Completion"
- Model: pick gpt-4o-mini
- Set the prompt to: "Say hello in one sentence" — leave the other fields at their defaults
- Click "Run once" (the play button at the bottom left)
- If you see a green checkmark with a response, your setup is complete
If the test fails with a 429 / insufficient quota error, your OpenAI account has no credits yet — go back to the "Getting Your AI API Key" section and purchase credits first.
Key Takeaways
- Both Make and Zapier offer free tiers for learning — but Zapier's free plan only allows two-step Zaps, while Make's free plan supports full multi-step scenarios
- You need an OpenAI or Anthropic API key to add AI to your workflows, and you must purchase at least $5 of OpenAI credits before the key works
- Set a spending limit on your API account to control costs
- Zapier uses Zaps (linear); Make uses Scenarios (visual canvas)
- Leave any field a lesson doesn't mention at its default — only Model and Prompt are required
- Always test your connection with a simple prompt before building complex workflows

