Quickstart
From API key to live waitlist page in two requests.
Get a key
Create an API key in Dashboard, Settings, API Keys. See Authentication.
Create a waitlist
curl -X POST https://usewait.com/api/v1/waitlists \
-H "Authorization: Bearer uw_live_YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{
"name": "Acme Robotics",
"slug": "acme-robotics",
"seoTitle": "Acme Robotics: join the waitlist"
}'The page is live at https://usewait.com/w/acme-robotics immediately, using the default template.
Check your signups
curl https://usewait.com/api/v1/waitlists/acme-robotics/entries \
-H "Authorization: Bearer uw_live_YOUR_KEY"Where to go next
- Restyle the page with your own code: Page code
- Customize the confirmation email: Email templates
- Upload a logo or Open Graph image: Assets
- Let an AI agent do all of the above: MCP Server