Zapier Integration Setup
Connect Prodigal AI to 5,000+ apps in minutes
🔑 First: Get Your API Key
✅ Code Already Updated!
Create Your Zapier Webhook
a. Go to Zapier and click "Create Zap"
b. Search for "Webhooks by Zapier" and select it
c. Choose "Catch Hook" as the event
d. Click Continue - Zapier will show you a Custom Webhook URL
Example: https://hooks.zapier.com/hooks/catch/1234567/abcdefg/
Copy Your Webhook URL
Copy the webhook URL that Zapier generated for you.
⚠️ Important: Copy the ENTIRE URL including the trailing slash
Update Your Code
Replace the webhook URL in these 3 files:
components/campaign/LeadCaptureForm.jsxLine 11: Replace PASTE_YOUR_ZAPIER_WEBHOOK_URL_HERE
components/landing/CallToAction.jsxLine 10: Replace PASTE_YOUR_ZAPIER_WEBHOOK_URL_HERE
components/landing/Hero.jsxLine 8: Replace PASTE_YOUR_ZAPIER_WEBHOOK_URL_HERE
// BEFORE:
const ZAPIER_WEBHOOK_URL = 'PASTE_YOUR_ZAPIER_WEBHOOK_URL_HERE';
// AFTER (use YOUR webhook URL):
const ZAPIER_WEBHOOK_URL = 'https://hooks.zapier.com/hooks/catch/1234567/abcdefg/';Test the Webhook
Back in Zapier, click "Test trigger" and submit a test lead on your website.
✅ You should see test data appear in Zapier with the lead's email, persona, and timestamp.
Connect to Mailchimp
a. Click "Continue" in Zapier
b. Add an Action: Search for "Mailchimp"
c. Choose "Add/Update Subscriber"
d. Connect your Mailchimp account
e. Select your audience/list
f. Map the fields:
Turn On Your Zap!
Click "Publish" in Zapier to activate your automation.
🎉 Congratulations!
Every new lead will now automatically be added to your Mailchimp list with the right tags and persona data. Test it by submitting another lead!
{
"event": "lead.created",
"email": "user@example.com",
"persona": "leaders", // or "entrepreneurs", "faith", "general"
"timestamp": "2024-01-15T10:30:00Z",
"source": "homepage_cta", // which form they submitted
"campaign": "leaders",
"tags": [
"leaders", // Their persona
"prodigal-movement", // Your brand
"website-signup" // Source identifier
]
}💡 Pro Tips:
- ✅ Use the persona field to segment your list (leaders, entrepreneurs, faith seekers)
- ✅ Use the tags array for Mailchimp tags or segments
- ✅ Use the source field to know which form converted them
- ✅ Use the timestamp for automation timing
🎉 Ready to Automate!
You now have everything you need to connect Prodigal AI to thousands of apps via Zapier. Start with the "New Lead → Email List" zap for immediate impact!