Get Appizer running in your app in under 5 minutes - no manual SDK setup required.
Prerequisites
- An app built with Bolt, v0, Cursor, Windsurf, Replit, or Lovable
- Free Appizer account (sign up here)
- WonderPush account (free tier available)
Step 1: Create Your Accounts
Appizer Account
- Sign up at appizer.com
- Create a new app
- Copy your API key from Settings
WonderPush Account
- Sign up at wonderpush.com
- Create a new project
- Get your Client ID and Client Secret
- Add WonderPush credentials to your Appizer app settings
Step 2: Agentic Integration (Recommended)
The fastest way to integrate Appizer is using our AI-powered prompts:
For Bolt.new, v0, Cursor, Windsurf:
- Go to Appizer Agentic Quick Start
- Select your platform (Bolt, v0, Cursor, etc.)
- Copy the one-shot integration prompt
- Paste into your AI coding tool
- Replace these 3 variables:
WONDERPUSH_CLIENT_IDWONDERPUSH_CLIENT_SECRETAPPIZER_API_KEY
- Submit → Appizer auto-integrated ✅
Done in 60 seconds!
Step 3: Manual Integration (Alternative)
If you prefer manual setup, use the REST API directly:
Track Events
curl -X POST https://api.appizer.com/v1/events \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"event_name": "user_signup",
"user_id": "user_123",
"properties": {
"plan": "free",
"source": "website"
}
}'
Create/Update Users
curl -X POST https://api.appizer.com/v1/users \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"user_id": "user_123",
"email": "user@example.com",
"properties": {
"name": "John Doe",
"plan": "free"
}
}'
Events start flowing immediately
Step 4: Set Up Automated Campaigns
Now the magic happens - create campaigns that run on autopilot:
1. Create an Audience (Natural Language)
In your Appizer dashboard:
"Users who signed up yesterday but haven't returned"
"Users inactive for 2+ days"
"Power users who completed 5+ actions"
AI automatically creates the segment.
2. Create a Campaign
Campaign Setup:
- Name: Win-back inactive users
- Audience: Users inactive 2+ days
- Message: AI-generated (or write your own)
- Schedule: Daily at 9 AM
- Channel: Push via WonderPush
AI Message Generation:
Prompt: "Send a friendly reminder to come back and check out new features"
AI generates unique messages like:
- "Hey! We've added new levels - come play!"
- "Miss you! Your progress is waiting 🎮"
- "New features just dropped - check them out!"
Set and forget!
What You Just Built
✅ Event Tracking: Your app sends user activity to Appizer
✅ AI Segmentation: Appizer identifies disengaging users
✅ Automated Campaigns: Re-engagement messages sent on autopilot
✅ Push Delivery: WonderPush handles notification delivery
Result: Users stay engaged while you focus on building.