Waitlist
Build a waitlist for your product before launch. When someone joins, SaaS Maker automatically sends a welcome email via Resend.
How it works
Section titled “How it works”- Add the waitlist endpoint or widget to your landing page
- Users submit their email (and optionally their name and referral source)
- A welcome email is sent automatically
- View and manage entries in the dashboard
API endpoints
Section titled “API endpoints”Join waitlist
Section titled “Join waitlist”POST /v1/waitlistAuth: API Key
curl -X POST https://saasmaker-api.sarthakagrawal927.workers.dev/v1/waitlist \ -H "Content-Type: application/json" \ -H "X-Project-Key: pk_abc123" \ -d '{ "email": "user@example.com", "name": "Jane Doe", "referral_source": "twitter" }'| Field | Type | Required | Description |
|---|---|---|---|
email | string | Yes | Email address |
name | string | No | Full name |
referral_source | string | No | How they found you |
List waitlist entries
Section titled “List waitlist entries”GET /v1/waitlist?project_id=...Auth: Session Token
curl https://saasmaker-api.sarthakagrawal927.workers.dev/v1/waitlist?project_id=proj_123 \ -H "Authorization: Bearer <token>"Returns all waitlist entries for the project, sorted by signup date.